@aws-sdk/client-backup-gateway 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/BackupGateway.d.ts +81 -89
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +8 -24
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateGatewayToServerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteHypervisorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DisassociateGatewayFromServerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetBandwidthRateLimitScheduleCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetHypervisorCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetHypervisorPropertyMappingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetVirtualMachineCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ImportHypervisorConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListHypervisorsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualMachinesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutBandwidthRateLimitScheduleCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PutHypervisorPropertyMappingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PutMaintenanceStartTimeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TestHypervisorConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateGatewayInformationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateGatewaySoftwareNowCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateHypervisorCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AssociateGatewayToServerInput,
|
|
4
|
-
AssociateGatewayToServerOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AssociateGatewayToServerInput, AssociateGatewayToServerOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateGatewayToServerCommandInput
|
|
8
|
-
extends AssociateGatewayToServerInput {}
|
|
4
|
+
export interface AssociateGatewayToServerCommandInput extends AssociateGatewayToServerInput {}
|
|
9
5
|
export interface AssociateGatewayToServerCommandOutput
|
|
10
|
-
extends AssociateGatewayToServerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AssociateGatewayToServerOutput, __MetadataBearer {}
|
|
12
7
|
declare const AssociateGatewayToServerCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AssociateGatewayToServerCommandInput
|
|
9
|
+
input: AssociateGatewayToServerCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AssociateGatewayToServerCommandInput,
|
|
17
12
|
AssociateGatewayToServerCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AssociateGatewayToServerCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AssociateGatewayToServerCommandInput
|
|
18
|
+
input: AssociateGatewayToServerCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AssociateGatewayToServerCommandInput,
|
|
26
21
|
AssociateGatewayToServerCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateGatewayInput, CreateGatewayOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateGatewayCommandInput extends CreateGatewayInput {}
|
|
5
|
-
export interface CreateGatewayCommandOutput
|
|
6
|
-
extends CreateGatewayOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateGatewayCommandOutput extends CreateGatewayOutput, __MetadataBearer {}
|
|
8
6
|
declare const CreateGatewayCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateGatewayCommandInput
|
|
8
|
+
input: CreateGatewayCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateGatewayCommandInput,
|
|
13
11
|
CreateGatewayCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateGatewayCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateGatewayCommandInput
|
|
17
|
+
input: CreateGatewayCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateGatewayCommandInput,
|
|
22
20
|
CreateGatewayCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteGatewayInput, DeleteGatewayOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteGatewayCommandInput extends DeleteGatewayInput {}
|
|
5
|
-
export interface DeleteGatewayCommandOutput
|
|
6
|
-
extends DeleteGatewayOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteGatewayCommandOutput extends DeleteGatewayOutput, __MetadataBearer {}
|
|
8
6
|
declare const DeleteGatewayCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteGatewayCommandInput
|
|
8
|
+
input: DeleteGatewayCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteGatewayCommandInput,
|
|
13
11
|
DeleteGatewayCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteGatewayCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteGatewayCommandInput
|
|
17
|
+
input: DeleteGatewayCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteGatewayCommandInput,
|
|
22
20
|
DeleteGatewayCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteHypervisorInput,
|
|
4
|
-
DeleteHypervisorOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteHypervisorInput, DeleteHypervisorOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteHypervisorCommandInput extends DeleteHypervisorInput {}
|
|
8
|
-
export interface DeleteHypervisorCommandOutput
|
|
9
|
-
extends DeleteHypervisorOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteHypervisorCommandOutput extends DeleteHypervisorOutput, __MetadataBearer {}
|
|
11
6
|
declare const DeleteHypervisorCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteHypervisorCommandInput
|
|
8
|
+
input: DeleteHypervisorCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteHypervisorCommandInput,
|
|
16
11
|
DeleteHypervisorCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteHypervisorCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteHypervisorCommandInput
|
|
17
|
+
input: DeleteHypervisorCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteHypervisorCommandInput,
|
|
25
20
|
DeleteHypervisorCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DisassociateGatewayFromServerOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisassociateGatewayFromServerCommandInput
|
|
8
|
-
extends DisassociateGatewayFromServerInput {}
|
|
7
|
+
export interface DisassociateGatewayFromServerCommandInput extends DisassociateGatewayFromServerInput {}
|
|
9
8
|
export interface DisassociateGatewayFromServerCommandOutput
|
|
10
|
-
extends DisassociateGatewayFromServerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DisassociateGatewayFromServerOutput, __MetadataBearer {}
|
|
12
10
|
declare const DisassociateGatewayFromServerCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DisassociateGatewayFromServerCommandInput
|
|
12
|
+
input: DisassociateGatewayFromServerCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DisassociateGatewayFromServerCommandInput,
|
|
17
15
|
DisassociateGatewayFromServerCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DisassociateGatewayFromServerCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DisassociateGatewayFromServerCommandInput
|
|
21
|
+
input: DisassociateGatewayFromServerCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DisassociateGatewayFromServerCommandInput,
|
|
26
24
|
DisassociateGatewayFromServerCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetBandwidthRateLimitScheduleOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetBandwidthRateLimitScheduleCommandInput
|
|
8
|
-
extends GetBandwidthRateLimitScheduleInput {}
|
|
7
|
+
export interface GetBandwidthRateLimitScheduleCommandInput extends GetBandwidthRateLimitScheduleInput {}
|
|
9
8
|
export interface GetBandwidthRateLimitScheduleCommandOutput
|
|
10
|
-
extends GetBandwidthRateLimitScheduleOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetBandwidthRateLimitScheduleOutput, __MetadataBearer {}
|
|
12
10
|
declare const GetBandwidthRateLimitScheduleCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetBandwidthRateLimitScheduleCommandInput
|
|
12
|
+
input: GetBandwidthRateLimitScheduleCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetBandwidthRateLimitScheduleCommandInput,
|
|
17
15
|
GetBandwidthRateLimitScheduleCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetBandwidthRateLimitScheduleCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetBandwidthRateLimitScheduleCommandInput
|
|
21
|
+
input: GetBandwidthRateLimitScheduleCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetBandwidthRateLimitScheduleCommandInput,
|
|
26
24
|
GetBandwidthRateLimitScheduleCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetGatewayInput, GetGatewayOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetGatewayCommandInput extends GetGatewayInput {}
|
|
5
|
-
export interface GetGatewayCommandOutput
|
|
6
|
-
extends GetGatewayOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetGatewayCommandOutput extends GetGatewayOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetGatewayCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetGatewayCommandInput
|
|
8
|
+
input: GetGatewayCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetGatewayCommandInput,
|
|
13
11
|
GetGatewayCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetGatewayCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetGatewayCommandInput
|
|
17
|
+
input: GetGatewayCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetGatewayCommandInput,
|
|
22
20
|
GetGatewayCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetHypervisorInput, GetHypervisorOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetHypervisorCommandInput extends GetHypervisorInput {}
|
|
5
|
-
export interface GetHypervisorCommandOutput
|
|
6
|
-
extends GetHypervisorOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetHypervisorCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetHypervisorCommandInput
|
|
8
|
+
input: GetHypervisorCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetHypervisorCommandInput,
|
|
13
11
|
GetHypervisorCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetHypervisorCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetHypervisorCommandInput
|
|
17
|
+
input: GetHypervisorCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetHypervisorCommandInput,
|
|
22
20
|
GetHypervisorCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetHypervisorPropertyMappingsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetHypervisorPropertyMappingsCommandInput
|
|
8
|
-
extends GetHypervisorPropertyMappingsInput {}
|
|
7
|
+
export interface GetHypervisorPropertyMappingsCommandInput extends GetHypervisorPropertyMappingsInput {}
|
|
9
8
|
export interface GetHypervisorPropertyMappingsCommandOutput
|
|
10
|
-
extends GetHypervisorPropertyMappingsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetHypervisorPropertyMappingsOutput, __MetadataBearer {}
|
|
12
10
|
declare const GetHypervisorPropertyMappingsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetHypervisorPropertyMappingsCommandInput
|
|
12
|
+
input: GetHypervisorPropertyMappingsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetHypervisorPropertyMappingsCommandInput,
|
|
17
15
|
GetHypervisorPropertyMappingsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetHypervisorPropertyMappingsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetHypervisorPropertyMappingsCommandInput
|
|
21
|
+
input: GetHypervisorPropertyMappingsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetHypervisorPropertyMappingsCommandInput,
|
|
26
24
|
GetHypervisorPropertyMappingsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetVirtualMachineInput,
|
|
4
|
-
GetVirtualMachineOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetVirtualMachineInput, GetVirtualMachineOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetVirtualMachineCommandInput extends GetVirtualMachineInput {}
|
|
8
|
-
export interface GetVirtualMachineCommandOutput
|
|
9
|
-
extends GetVirtualMachineOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetVirtualMachineCommandOutput extends GetVirtualMachineOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetVirtualMachineCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetVirtualMachineCommandInput
|
|
8
|
+
input: GetVirtualMachineCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetVirtualMachineCommandInput,
|
|
16
11
|
GetVirtualMachineCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetVirtualMachineCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetVirtualMachineCommandInput
|
|
17
|
+
input: GetVirtualMachineCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetVirtualMachineCommandInput,
|
|
25
20
|
GetVirtualMachineCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ImportHypervisorConfigurationOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ImportHypervisorConfigurationCommandInput
|
|
8
|
-
extends ImportHypervisorConfigurationInput {}
|
|
7
|
+
export interface ImportHypervisorConfigurationCommandInput extends ImportHypervisorConfigurationInput {}
|
|
9
8
|
export interface ImportHypervisorConfigurationCommandOutput
|
|
10
|
-
extends ImportHypervisorConfigurationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ImportHypervisorConfigurationOutput, __MetadataBearer {}
|
|
12
10
|
declare const ImportHypervisorConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ImportHypervisorConfigurationCommandInput
|
|
12
|
+
input: ImportHypervisorConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ImportHypervisorConfigurationCommandInput,
|
|
17
15
|
ImportHypervisorConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ImportHypervisorConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ImportHypervisorConfigurationCommandInput
|
|
21
|
+
input: ImportHypervisorConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ImportHypervisorConfigurationCommandInput,
|
|
26
24
|
ImportHypervisorConfigurationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListGatewaysInput, ListGatewaysOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListGatewaysCommandInput extends ListGatewaysInput {}
|
|
5
|
-
export interface ListGatewaysCommandOutput
|
|
6
|
-
extends ListGatewaysOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListGatewaysCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListGatewaysCommandInput
|
|
8
|
+
input: ListGatewaysCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListGatewaysCommandInput,
|
|
13
11
|
ListGatewaysCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListHypervisorsInput,
|
|
4
|
-
ListHypervisorsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListHypervisorsInput, ListHypervisorsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListHypervisorsCommandInput extends ListHypervisorsInput {}
|
|
8
|
-
export interface ListHypervisorsCommandOutput
|
|
9
|
-
extends ListHypervisorsOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListHypervisorsCommandOutput extends ListHypervisorsOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListHypervisorsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListHypervisorsCommandInput
|
|
8
|
+
input: ListHypervisorsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListHypervisorsCommandInput,
|
|
16
11
|
ListHypervisorsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListVirtualMachinesInput,
|
|
4
|
-
ListVirtualMachinesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListVirtualMachinesInput, ListVirtualMachinesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListVirtualMachinesCommandInput
|
|
8
|
-
extends ListVirtualMachinesInput {}
|
|
4
|
+
export interface ListVirtualMachinesCommandInput extends ListVirtualMachinesInput {}
|
|
9
5
|
export interface ListVirtualMachinesCommandOutput
|
|
10
|
-
extends ListVirtualMachinesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListVirtualMachinesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListVirtualMachinesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListVirtualMachinesCommandInput
|
|
9
|
+
input: ListVirtualMachinesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListVirtualMachinesCommandInput,
|
|
17
12
|
ListVirtualMachinesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutBandwidthRateLimitScheduleOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutBandwidthRateLimitScheduleCommandInput
|
|
8
|
-
extends PutBandwidthRateLimitScheduleInput {}
|
|
7
|
+
export interface PutBandwidthRateLimitScheduleCommandInput extends PutBandwidthRateLimitScheduleInput {}
|
|
9
8
|
export interface PutBandwidthRateLimitScheduleCommandOutput
|
|
10
|
-
extends PutBandwidthRateLimitScheduleOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutBandwidthRateLimitScheduleOutput, __MetadataBearer {}
|
|
12
10
|
declare const PutBandwidthRateLimitScheduleCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutBandwidthRateLimitScheduleCommandInput
|
|
12
|
+
input: PutBandwidthRateLimitScheduleCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutBandwidthRateLimitScheduleCommandInput,
|
|
17
15
|
PutBandwidthRateLimitScheduleCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutBandwidthRateLimitScheduleCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutBandwidthRateLimitScheduleCommandInput
|
|
21
|
+
input: PutBandwidthRateLimitScheduleCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutBandwidthRateLimitScheduleCommandInput,
|
|
26
24
|
PutBandwidthRateLimitScheduleCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutHypervisorPropertyMappingsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutHypervisorPropertyMappingsCommandInput
|
|
8
|
-
extends PutHypervisorPropertyMappingsInput {}
|
|
7
|
+
export interface PutHypervisorPropertyMappingsCommandInput extends PutHypervisorPropertyMappingsInput {}
|
|
9
8
|
export interface PutHypervisorPropertyMappingsCommandOutput
|
|
10
|
-
extends PutHypervisorPropertyMappingsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutHypervisorPropertyMappingsOutput, __MetadataBearer {}
|
|
12
10
|
declare const PutHypervisorPropertyMappingsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutHypervisorPropertyMappingsCommandInput
|
|
12
|
+
input: PutHypervisorPropertyMappingsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutHypervisorPropertyMappingsCommandInput,
|
|
17
15
|
PutHypervisorPropertyMappingsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutHypervisorPropertyMappingsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutHypervisorPropertyMappingsCommandInput
|
|
21
|
+
input: PutHypervisorPropertyMappingsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutHypervisorPropertyMappingsCommandInput,
|
|
26
24
|
PutHypervisorPropertyMappingsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutMaintenanceStartTimeInput,
|
|
4
|
-
PutMaintenanceStartTimeOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutMaintenanceStartTimeInput, PutMaintenanceStartTimeOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutMaintenanceStartTimeCommandInput
|
|
8
|
-
extends PutMaintenanceStartTimeInput {}
|
|
4
|
+
export interface PutMaintenanceStartTimeCommandInput extends PutMaintenanceStartTimeInput {}
|
|
9
5
|
export interface PutMaintenanceStartTimeCommandOutput
|
|
10
|
-
extends PutMaintenanceStartTimeOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutMaintenanceStartTimeOutput, __MetadataBearer {}
|
|
12
7
|
declare const PutMaintenanceStartTimeCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutMaintenanceStartTimeCommandInput
|
|
9
|
+
input: PutMaintenanceStartTimeCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutMaintenanceStartTimeCommandInput,
|
|
17
12
|
PutMaintenanceStartTimeCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutMaintenanceStartTimeCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutMaintenanceStartTimeCommandInput
|
|
18
|
+
input: PutMaintenanceStartTimeCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutMaintenanceStartTimeCommandInput,
|
|
26
21
|
PutMaintenanceStartTimeCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartVirtualMachinesMetadataSyncOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartVirtualMachinesMetadataSyncCommandInput
|
|
8
|
-
extends StartVirtualMachinesMetadataSyncInput {}
|
|
7
|
+
export interface StartVirtualMachinesMetadataSyncCommandInput extends StartVirtualMachinesMetadataSyncInput {}
|
|
9
8
|
export interface StartVirtualMachinesMetadataSyncCommandOutput
|
|
10
|
-
extends StartVirtualMachinesMetadataSyncOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartVirtualMachinesMetadataSyncOutput, __MetadataBearer {}
|
|
12
10
|
declare const StartVirtualMachinesMetadataSyncCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartVirtualMachinesMetadataSyncCommandInput
|
|
12
|
+
input: StartVirtualMachinesMetadataSyncCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartVirtualMachinesMetadataSyncCommandInput,
|
|
17
15
|
StartVirtualMachinesMetadataSyncCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartVirtualMachinesMetadataSyncCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartVirtualMachinesMetadataSyncCommandInput
|
|
21
|
+
input: StartVirtualMachinesMetadataSyncCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartVirtualMachinesMetadataSyncCommandInput,
|
|
26
24
|
StartVirtualMachinesMetadataSyncCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
TestHypervisorConfigurationOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface TestHypervisorConfigurationCommandInput
|
|
8
|
-
extends TestHypervisorConfigurationInput {}
|
|
7
|
+
export interface TestHypervisorConfigurationCommandInput extends TestHypervisorConfigurationInput {}
|
|
9
8
|
export interface TestHypervisorConfigurationCommandOutput
|
|
10
|
-
extends TestHypervisorConfigurationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends TestHypervisorConfigurationOutput, __MetadataBearer {}
|
|
12
10
|
declare const TestHypervisorConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: TestHypervisorConfigurationCommandInput
|
|
12
|
+
input: TestHypervisorConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
TestHypervisorConfigurationCommandInput,
|
|
17
15
|
TestHypervisorConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const TestHypervisorConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: TestHypervisorConfigurationCommandInput
|
|
21
|
+
input: TestHypervisorConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
TestHypervisorConfigurationCommandInput,
|
|
26
24
|
TestHypervisorConfigurationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
5
|
-
export interface UntagResourceCommandOutput
|
|
6
|
-
extends UntagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const UntagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UntagResourceCommandInput,
|
|
13
11
|
UntagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UntagResourceCommandInput,
|
|
22
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateGatewayInformationInput,
|
|
4
|
-
UpdateGatewayInformationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateGatewayInformationInput, UpdateGatewayInformationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateGatewayInformationCommandInput
|
|
8
|
-
extends UpdateGatewayInformationInput {}
|
|
4
|
+
export interface UpdateGatewayInformationCommandInput extends UpdateGatewayInformationInput {}
|
|
9
5
|
export interface UpdateGatewayInformationCommandOutput
|
|
10
|
-
extends UpdateGatewayInformationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateGatewayInformationOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateGatewayInformationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateGatewayInformationCommandInput
|
|
9
|
+
input: UpdateGatewayInformationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateGatewayInformationCommandInput,
|
|
17
12
|
UpdateGatewayInformationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateGatewayInformationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateGatewayInformationCommandInput
|
|
18
|
+
input: UpdateGatewayInformationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateGatewayInformationCommandInput,
|
|
26
21
|
UpdateGatewayInformationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateGatewaySoftwareNowInput,
|
|
4
|
-
UpdateGatewaySoftwareNowOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateGatewaySoftwareNowInput, UpdateGatewaySoftwareNowOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateGatewaySoftwareNowCommandInput
|
|
8
|
-
extends UpdateGatewaySoftwareNowInput {}
|
|
4
|
+
export interface UpdateGatewaySoftwareNowCommandInput extends UpdateGatewaySoftwareNowInput {}
|
|
9
5
|
export interface UpdateGatewaySoftwareNowCommandOutput
|
|
10
|
-
extends UpdateGatewaySoftwareNowOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateGatewaySoftwareNowOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateGatewaySoftwareNowCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateGatewaySoftwareNowCommandInput
|
|
9
|
+
input: UpdateGatewaySoftwareNowCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateGatewaySoftwareNowCommandInput,
|
|
17
12
|
UpdateGatewaySoftwareNowCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateGatewaySoftwareNowCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateGatewaySoftwareNowCommandInput
|
|
18
|
+
input: UpdateGatewaySoftwareNowCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateGatewaySoftwareNowCommandInput,
|
|
26
21
|
UpdateGatewaySoftwareNowCommandOutput,
|