@aws-sdk/client-backup-gateway 3.300.0 → 3.301.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-types/commands/AssociateGatewayToServerCommand.d.ts +1 -1
- package/dist-types/commands/CreateGatewayCommand.d.ts +3 -3
- package/dist-types/commands/DeleteGatewayCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHypervisorCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateGatewayFromServerCommand.d.ts +1 -1
- package/dist-types/commands/GetBandwidthRateLimitScheduleCommand.d.ts +1 -1
- package/dist-types/commands/GetGatewayCommand.d.ts +1 -1
- package/dist-types/commands/GetHypervisorCommand.d.ts +1 -1
- package/dist-types/commands/GetHypervisorPropertyMappingsCommand.d.ts +1 -1
- package/dist-types/commands/GetVirtualMachineCommand.d.ts +1 -1
- package/dist-types/commands/ImportHypervisorConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/ListGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/ListHypervisorsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListVirtualMachinesCommand.d.ts +1 -1
- package/dist-types/commands/PutBandwidthRateLimitScheduleCommand.d.ts +4 -4
- package/dist-types/commands/PutHypervisorPropertyMappingsCommand.d.ts +3 -3
- package/dist-types/commands/PutMaintenanceStartTimeCommand.d.ts +1 -1
- package/dist-types/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/TestHypervisorConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateGatewayInformationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGatewaySoftwareNowCommand.d.ts +1 -1
- package/dist-types/commands/UpdateHypervisorCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -27,7 +27,7 @@ export interface AssociateGatewayToServerCommandOutput extends AssociateGatewayT
|
|
|
27
27
|
* import { BackupGatewayClient, AssociateGatewayToServerCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
28
28
|
* // const { BackupGatewayClient, AssociateGatewayToServerCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
29
29
|
* const client = new BackupGatewayClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // AssociateGatewayToServerInput
|
|
31
31
|
* GatewayArn: "STRING_VALUE", // required
|
|
32
32
|
* ServerArn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,12 +27,12 @@ export interface CreateGatewayCommandOutput extends CreateGatewayOutput, __Metad
|
|
|
27
27
|
* import { BackupGatewayClient, CreateGatewayCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
28
28
|
* // const { BackupGatewayClient, CreateGatewayCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
29
29
|
* const client = new BackupGatewayClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateGatewayInput
|
|
31
31
|
* ActivationKey: "STRING_VALUE", // required
|
|
32
32
|
* GatewayDisplayName: "STRING_VALUE", // required
|
|
33
33
|
* GatewayType: "STRING_VALUE", // required
|
|
34
|
-
* Tags: [
|
|
35
|
-
* {
|
|
34
|
+
* Tags: [ // Tags
|
|
35
|
+
* { // Tag
|
|
36
36
|
* Key: "STRING_VALUE", // required
|
|
37
37
|
* Value: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DeleteGatewayCommandOutput extends DeleteGatewayOutput, __Metad
|
|
|
26
26
|
* import { BackupGatewayClient, DeleteGatewayCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, DeleteGatewayCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteGatewayInput
|
|
30
30
|
* GatewayArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteGatewayCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteHypervisorCommandOutput extends DeleteHypervisorOutput, _
|
|
|
26
26
|
* import { BackupGatewayClient, DeleteHypervisorCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, DeleteHypervisorCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteHypervisorInput
|
|
30
30
|
* HypervisorArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteHypervisorCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DisassociateGatewayFromServerCommandOutput extends Disassociate
|
|
|
27
27
|
* import { BackupGatewayClient, DisassociateGatewayFromServerCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
28
28
|
* // const { BackupGatewayClient, DisassociateGatewayFromServerCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
29
29
|
* const client = new BackupGatewayClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DisassociateGatewayFromServerInput
|
|
31
31
|
* GatewayArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DisassociateGatewayFromServerCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface GetBandwidthRateLimitScheduleCommandOutput extends GetBandwidth
|
|
|
29
29
|
* import { BackupGatewayClient, GetBandwidthRateLimitScheduleCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
30
30
|
* // const { BackupGatewayClient, GetBandwidthRateLimitScheduleCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
31
31
|
* const client = new BackupGatewayClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // GetBandwidthRateLimitScheduleInput
|
|
33
33
|
* GatewayArn: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetBandwidthRateLimitScheduleCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface GetGatewayCommandOutput extends GetGatewayOutput, __MetadataBea
|
|
|
27
27
|
* import { BackupGatewayClient, GetGatewayCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
28
28
|
* // const { BackupGatewayClient, GetGatewayCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
29
29
|
* const client = new BackupGatewayClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetGatewayInput
|
|
31
31
|
* GatewayArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetGatewayCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __Metad
|
|
|
28
28
|
* import { BackupGatewayClient, GetHypervisorCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
29
29
|
* // const { BackupGatewayClient, GetHypervisorCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
30
30
|
* const client = new BackupGatewayClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetHypervisorInput
|
|
32
32
|
* HypervisorArn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetHypervisorCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetHypervisorPropertyMappingsCommandOutput extends GetHyperviso
|
|
|
28
28
|
* import { BackupGatewayClient, GetHypervisorPropertyMappingsCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
29
29
|
* // const { BackupGatewayClient, GetHypervisorPropertyMappingsCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
30
30
|
* const client = new BackupGatewayClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetHypervisorPropertyMappingsInput
|
|
32
32
|
* HypervisorArn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetHypervisorPropertyMappingsCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetVirtualMachineCommandOutput extends GetVirtualMachineOutput,
|
|
|
26
26
|
* import { BackupGatewayClient, GetVirtualMachineCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, GetVirtualMachineCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetVirtualMachineInput
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetVirtualMachineCommand(input);
|
|
@@ -26,14 +26,14 @@ export interface ImportHypervisorConfigurationCommandOutput extends ImportHyperv
|
|
|
26
26
|
* import { BackupGatewayClient, ImportHypervisorConfigurationCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, ImportHypervisorConfigurationCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ImportHypervisorConfigurationInput
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* Host: "STRING_VALUE", // required
|
|
32
32
|
* Username: "STRING_VALUE",
|
|
33
33
|
* Password: "STRING_VALUE",
|
|
34
34
|
* KmsKeyArn: "STRING_VALUE",
|
|
35
|
-
* Tags: [
|
|
36
|
-
* {
|
|
35
|
+
* Tags: [ // Tags
|
|
36
|
+
* { // Tag
|
|
37
37
|
* Key: "STRING_VALUE", // required
|
|
38
38
|
* Value: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
@@ -26,7 +26,7 @@ export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __Metadat
|
|
|
26
26
|
* import { BackupGatewayClient, ListGatewaysCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, ListGatewaysCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListGatewaysInput
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListHypervisorsCommandOutput extends ListHypervisorsOutput, __M
|
|
|
26
26
|
* import { BackupGatewayClient, ListHypervisorsCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, ListHypervisorsCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListHypervisorsInput
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
27
27
|
* import { BackupGatewayClient, ListTagsForResourceCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
28
28
|
* // const { BackupGatewayClient, ListTagsForResourceCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
29
29
|
* const client = new BackupGatewayClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListTagsForResourceInput
|
|
31
31
|
* ResourceArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListVirtualMachinesCommandOutput extends ListVirtualMachinesOut
|
|
|
26
26
|
* import { BackupGatewayClient, ListVirtualMachinesCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, ListVirtualMachinesCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListVirtualMachinesInput
|
|
30
30
|
* HypervisorArn: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -29,16 +29,16 @@ export interface PutBandwidthRateLimitScheduleCommandOutput extends PutBandwidth
|
|
|
29
29
|
* import { BackupGatewayClient, PutBandwidthRateLimitScheduleCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
30
30
|
* // const { BackupGatewayClient, PutBandwidthRateLimitScheduleCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
31
31
|
* const client = new BackupGatewayClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // PutBandwidthRateLimitScheduleInput
|
|
33
33
|
* GatewayArn: "STRING_VALUE", // required
|
|
34
|
-
* BandwidthRateLimitIntervals: [ // required
|
|
35
|
-
* {
|
|
34
|
+
* BandwidthRateLimitIntervals: [ // BandwidthRateLimitIntervals // required
|
|
35
|
+
* { // BandwidthRateLimitInterval
|
|
36
36
|
* AverageUploadRateLimitInBitsPerSec: Number("long"),
|
|
37
37
|
* StartHourOfDay: Number("int"), // required
|
|
38
38
|
* EndHourOfDay: Number("int"), // required
|
|
39
39
|
* StartMinuteOfHour: Number("int"), // required
|
|
40
40
|
* EndMinuteOfHour: Number("int"), // required
|
|
41
|
-
* DaysOfWeek: [ // required
|
|
41
|
+
* DaysOfWeek: [ // DaysOfWeek // required
|
|
42
42
|
* Number("int"),
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
@@ -28,10 +28,10 @@ export interface PutHypervisorPropertyMappingsCommandOutput extends PutHyperviso
|
|
|
28
28
|
* import { BackupGatewayClient, PutHypervisorPropertyMappingsCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
29
29
|
* // const { BackupGatewayClient, PutHypervisorPropertyMappingsCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
30
30
|
* const client = new BackupGatewayClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // PutHypervisorPropertyMappingsInput
|
|
32
32
|
* HypervisorArn: "STRING_VALUE", // required
|
|
33
|
-
* VmwareToAwsTagMappings: [ // required
|
|
34
|
-
* {
|
|
33
|
+
* VmwareToAwsTagMappings: [ // VmwareToAwsTagMappings // required
|
|
34
|
+
* { // VmwareToAwsTagMapping
|
|
35
35
|
* VmwareCategory: "STRING_VALUE", // required
|
|
36
36
|
* VmwareTagName: "STRING_VALUE", // required
|
|
37
37
|
* AwsTagKey: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface PutMaintenanceStartTimeCommandOutput extends PutMaintenanceStar
|
|
|
26
26
|
* import { BackupGatewayClient, PutMaintenanceStartTimeCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, PutMaintenanceStartTimeCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // PutMaintenanceStartTimeInput
|
|
30
30
|
* GatewayArn: "STRING_VALUE", // required
|
|
31
31
|
* HourOfDay: Number("int"), // required
|
|
32
32
|
* MinuteOfHour: Number("int"), // required
|
|
@@ -26,7 +26,7 @@ export interface StartVirtualMachinesMetadataSyncCommandOutput extends StartVirt
|
|
|
26
26
|
* import { BackupGatewayClient, StartVirtualMachinesMetadataSyncCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, StartVirtualMachinesMetadataSyncCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartVirtualMachinesMetadataSyncInput
|
|
30
30
|
* HypervisorArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartVirtualMachinesMetadataSyncCommand(input);
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
26
26
|
* import { BackupGatewayClient, TagResourceCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, TagResourceCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceInput
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
-
* Tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* Tags: [ // Tags // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* Key: "STRING_VALUE", // required
|
|
34
34
|
* Value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -27,7 +27,7 @@ export interface TestHypervisorConfigurationCommandOutput extends TestHypervisor
|
|
|
27
27
|
* import { BackupGatewayClient, TestHypervisorConfigurationCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
28
28
|
* // const { BackupGatewayClient, TestHypervisorConfigurationCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
29
29
|
* const client = new BackupGatewayClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // TestHypervisorConfigurationInput
|
|
31
31
|
* GatewayArn: "STRING_VALUE", // required
|
|
32
32
|
* Host: "STRING_VALUE", // required
|
|
33
33
|
* Username: "STRING_VALUE",
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
26
26
|
* import { BackupGatewayClient, UntagResourceCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
27
27
|
* // const { BackupGatewayClient, UntagResourceCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
28
28
|
* const client = new BackupGatewayClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceInput
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeys // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ export interface UpdateGatewayInformationCommandOutput extends UpdateGatewayInfo
|
|
|
27
27
|
* import { BackupGatewayClient, UpdateGatewayInformationCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
28
28
|
* // const { BackupGatewayClient, UpdateGatewayInformationCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
29
29
|
* const client = new BackupGatewayClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateGatewayInformationInput
|
|
31
31
|
* GatewayArn: "STRING_VALUE", // required
|
|
32
32
|
* GatewayDisplayName: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -32,7 +32,7 @@ export interface UpdateGatewaySoftwareNowCommandOutput extends UpdateGatewaySoft
|
|
|
32
32
|
* import { BackupGatewayClient, UpdateGatewaySoftwareNowCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
33
33
|
* // const { BackupGatewayClient, UpdateGatewaySoftwareNowCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
34
34
|
* const client = new BackupGatewayClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // UpdateGatewaySoftwareNowInput
|
|
36
36
|
* GatewayArn: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new UpdateGatewaySoftwareNowCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface UpdateHypervisorCommandOutput extends UpdateHypervisorOutput, _
|
|
|
28
28
|
* import { BackupGatewayClient, UpdateHypervisorCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
29
29
|
* // const { BackupGatewayClient, UpdateHypervisorCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
30
30
|
* const client = new BackupGatewayClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateHypervisorInput
|
|
32
32
|
* HypervisorArn: "STRING_VALUE", // required
|
|
33
33
|
* Host: "STRING_VALUE",
|
|
34
34
|
* Username: "STRING_VALUE",
|
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.
|
|
4
|
+
"version": "3.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|