@aws-sdk/client-backup-gateway 3.229.0 → 3.232.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/BackupGateway.js +90 -0
- package/dist-cjs/commands/GetBandwidthRateLimitScheduleCommand.js +46 -0
- package/dist-cjs/commands/GetHypervisorCommand.js +46 -0
- package/dist-cjs/commands/GetHypervisorPropertyMappingsCommand.js +46 -0
- package/dist-cjs/commands/PutBandwidthRateLimitScheduleCommand.js +46 -0
- package/dist-cjs/commands/PutHypervisorPropertyMappingsCommand.js +46 -0
- package/dist-cjs/commands/StartVirtualMachinesMetadataSyncCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/endpoint/ruleset.js +1 -10
- package/dist-cjs/models/models_0.js +78 -6
- package/dist-cjs/protocols/Aws_json1_0.js +538 -1
- package/dist-es/BackupGateway.js +90 -0
- package/dist-es/commands/GetBandwidthRateLimitScheduleCommand.js +42 -0
- package/dist-es/commands/GetHypervisorCommand.js +42 -0
- package/dist-es/commands/GetHypervisorPropertyMappingsCommand.js +42 -0
- package/dist-es/commands/PutBandwidthRateLimitScheduleCommand.js +42 -0
- package/dist-es/commands/PutHypervisorPropertyMappingsCommand.js +42 -0
- package/dist-es/commands/StartVirtualMachinesMetadataSyncCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/endpoint/ruleset.js +1 -10
- package/dist-es/models/models_0.js +60 -4
- package/dist-es/protocols/Aws_json1_0.js +526 -1
- package/dist-types/BackupGateway.d.ts +54 -0
- package/dist-types/BackupGatewayClient.d.ts +8 -2
- package/dist-types/commands/GetBandwidthRateLimitScheduleCommand.d.ts +40 -0
- package/dist-types/commands/GetHypervisorCommand.d.ts +39 -0
- package/dist-types/commands/GetHypervisorPropertyMappingsCommand.d.ts +39 -0
- package/dist-types/commands/PutBandwidthRateLimitScheduleCommand.d.ts +40 -0
- package/dist-types/commands/PutHypervisorPropertyMappingsCommand.d.ts +39 -0
- package/dist-types/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +355 -22
- package/dist-types/protocols/Aws_json1_0.d.ts +18 -0
- package/dist-types/ts3.4/BackupGateway.d.ts +102 -0
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetBandwidthRateLimitScheduleCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetHypervisorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetHypervisorPropertyMappingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutBandwidthRateLimitScheduleCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutHypervisorPropertyMappingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +142 -15
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +72 -0
- package/package.json +5 -5
|
@@ -99,6 +99,118 @@ export declare class ValidationException extends __BaseException {
|
|
|
99
99
|
*/
|
|
100
100
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
101
101
|
}
|
|
102
|
+
export interface GetBandwidthRateLimitScheduleInput {
|
|
103
|
+
/**
|
|
104
|
+
* <p>The Amazon Resource Name (ARN) of the gateway. Use the
|
|
105
|
+
* <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html">
|
|
106
|
+
* <code>ListGateways</code>
|
|
107
|
+
* </a> operation to return a list of gateways
|
|
108
|
+
* for your account and Amazon Web Services Region.</p>
|
|
109
|
+
*/
|
|
110
|
+
GatewayArn: string | undefined;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* <p>Describes a bandwidth rate limit interval for a gateway. A bandwidth
|
|
114
|
+
* rate limit schedule consists of one or more bandwidth rate limit intervals.
|
|
115
|
+
* A bandwidth rate limit interval defines a period of time on one or more days
|
|
116
|
+
* of the week, during which bandwidth rate limits are specified for uploading,
|
|
117
|
+
* downloading, or both.</p>
|
|
118
|
+
*/
|
|
119
|
+
export interface BandwidthRateLimitInterval {
|
|
120
|
+
/**
|
|
121
|
+
* <p>The average upload rate limit component of the bandwidth rate limit
|
|
122
|
+
* interval, in bits per second. This field does not appear in the response if
|
|
123
|
+
* the upload rate limit is not set.</p>
|
|
124
|
+
* <note>
|
|
125
|
+
* <p>For Backup Gateway, the minimum value is <code>(Value)</code>.</p>
|
|
126
|
+
* </note>
|
|
127
|
+
*/
|
|
128
|
+
AverageUploadRateLimitInBitsPerSec?: number;
|
|
129
|
+
/**
|
|
130
|
+
* <p>The hour of the day to start the bandwidth rate limit interval.</p>
|
|
131
|
+
*/
|
|
132
|
+
StartHourOfDay: number | undefined;
|
|
133
|
+
/**
|
|
134
|
+
* <p>The hour of the day to end the bandwidth rate limit interval.</p>
|
|
135
|
+
*/
|
|
136
|
+
EndHourOfDay: number | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* <p>The minute of the hour to start the bandwidth rate limit interval. The
|
|
139
|
+
* interval begins at the start of that minute. To begin an interval exactly at
|
|
140
|
+
* the start of the hour, use the value <code>0</code>.</p>
|
|
141
|
+
*/
|
|
142
|
+
StartMinuteOfHour: number | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* <p>The minute of the hour to end the bandwidth rate limit interval.</p>
|
|
145
|
+
* <important>
|
|
146
|
+
* <p>The bandwidth rate limit interval ends at the end of the minute.
|
|
147
|
+
* To end an interval at the end of an hour, use the value <code>59</code>.</p>
|
|
148
|
+
* </important>
|
|
149
|
+
*/
|
|
150
|
+
EndMinuteOfHour: number | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* <p>The days of the week component of the bandwidth rate limit interval,
|
|
153
|
+
* represented as ordinal numbers from 0 to 6, where 0 represents Sunday and 6 represents
|
|
154
|
+
* Saturday.</p>
|
|
155
|
+
*/
|
|
156
|
+
DaysOfWeek: number[] | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface GetBandwidthRateLimitScheduleOutput {
|
|
159
|
+
/**
|
|
160
|
+
* <p>The Amazon Resource Name (ARN) of the gateway. Use the
|
|
161
|
+
* <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html">
|
|
162
|
+
* <code>ListGateways</code>
|
|
163
|
+
* </a> operation to return a list of gateways
|
|
164
|
+
* for your account and Amazon Web Services Region.</p>
|
|
165
|
+
*/
|
|
166
|
+
GatewayArn?: string;
|
|
167
|
+
/**
|
|
168
|
+
* <p>An array containing bandwidth rate limit schedule intervals for a gateway.
|
|
169
|
+
* When no bandwidth rate limit intervals have been scheduled, the array is empty.</p>
|
|
170
|
+
*/
|
|
171
|
+
BandwidthRateLimitIntervals?: BandwidthRateLimitInterval[];
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* <p>A resource that is required for the action wasn't found.</p>
|
|
175
|
+
*/
|
|
176
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
177
|
+
readonly name: "ResourceNotFoundException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
/**
|
|
180
|
+
* <p>A description of which resource wasn't found.</p>
|
|
181
|
+
*/
|
|
182
|
+
ErrorCode?: string;
|
|
183
|
+
Message?: string;
|
|
184
|
+
/**
|
|
185
|
+
* @internal
|
|
186
|
+
*/
|
|
187
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
188
|
+
}
|
|
189
|
+
export interface PutBandwidthRateLimitScheduleInput {
|
|
190
|
+
/**
|
|
191
|
+
* <p>The Amazon Resource Name (ARN) of the gateway. Use the
|
|
192
|
+
* <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html">
|
|
193
|
+
* <code>ListGateways</code>
|
|
194
|
+
* </a> operation to return a list of gateways
|
|
195
|
+
* for your account and Amazon Web Services Region.</p>
|
|
196
|
+
*/
|
|
197
|
+
GatewayArn: string | undefined;
|
|
198
|
+
/**
|
|
199
|
+
* <p>An array containing bandwidth rate limit schedule intervals for a gateway.
|
|
200
|
+
* When no bandwidth rate limit intervals have been scheduled, the array is empty.</p>
|
|
201
|
+
*/
|
|
202
|
+
BandwidthRateLimitIntervals: BandwidthRateLimitInterval[] | undefined;
|
|
203
|
+
}
|
|
204
|
+
export interface PutBandwidthRateLimitScheduleOutput {
|
|
205
|
+
/**
|
|
206
|
+
* <p>The Amazon Resource Name (ARN) of the gateway. Use the
|
|
207
|
+
* <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html">
|
|
208
|
+
* <code>ListGateways</code>
|
|
209
|
+
* </a> operation to return a list of gateways
|
|
210
|
+
* for your account and Amazon Web Services Region.</p>
|
|
211
|
+
*/
|
|
212
|
+
GatewayArn?: string;
|
|
213
|
+
}
|
|
102
214
|
export declare enum GatewayType {
|
|
103
215
|
BACKUP_VM = "BACKUP_VM"
|
|
104
216
|
}
|
|
@@ -153,22 +265,6 @@ export interface DeleteGatewayOutput {
|
|
|
153
265
|
*/
|
|
154
266
|
GatewayArn?: string;
|
|
155
267
|
}
|
|
156
|
-
/**
|
|
157
|
-
* <p>A resource that is required for the action wasn't found.</p>
|
|
158
|
-
*/
|
|
159
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
160
|
-
readonly name: "ResourceNotFoundException";
|
|
161
|
-
readonly $fault: "client";
|
|
162
|
-
/**
|
|
163
|
-
* <p>A description of which resource wasn't found.</p>
|
|
164
|
-
*/
|
|
165
|
-
ErrorCode?: string;
|
|
166
|
-
Message?: string;
|
|
167
|
-
/**
|
|
168
|
-
* @internal
|
|
169
|
-
*/
|
|
170
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
171
|
-
}
|
|
172
268
|
export interface DisassociateGatewayFromServerInput {
|
|
173
269
|
/**
|
|
174
270
|
* <p>The Amazon Resource Name (ARN) of the gateway to disassociate.</p>
|
|
@@ -412,6 +508,144 @@ export interface DeleteHypervisorOutput {
|
|
|
412
508
|
*/
|
|
413
509
|
HypervisorArn?: string;
|
|
414
510
|
}
|
|
511
|
+
export interface GetHypervisorInput {
|
|
512
|
+
/**
|
|
513
|
+
* <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
|
|
514
|
+
*/
|
|
515
|
+
HypervisorArn: string | undefined;
|
|
516
|
+
}
|
|
517
|
+
export declare enum SyncMetadataStatus {
|
|
518
|
+
CREATED = "CREATED",
|
|
519
|
+
FAILED = "FAILED",
|
|
520
|
+
PARTIALLY_FAILED = "PARTIALLY_FAILED",
|
|
521
|
+
RUNNING = "RUNNING",
|
|
522
|
+
SUCCEEDED = "SUCCEEDED"
|
|
523
|
+
}
|
|
524
|
+
export declare enum HypervisorState {
|
|
525
|
+
ERROR = "ERROR",
|
|
526
|
+
OFFLINE = "OFFLINE",
|
|
527
|
+
ONLINE = "ONLINE",
|
|
528
|
+
PENDING = "PENDING"
|
|
529
|
+
}
|
|
530
|
+
/**
|
|
531
|
+
* <p>These are the details of the specified hypervisor. A hypervisor is hardware,
|
|
532
|
+
* software, or firmware that creates and manages virtual machines, and allocates
|
|
533
|
+
* resources to them.</p>
|
|
534
|
+
*/
|
|
535
|
+
export interface HypervisorDetails {
|
|
536
|
+
/**
|
|
537
|
+
* <p>The server host of the hypervisor. This can be either an IP address or
|
|
538
|
+
* a fully-qualified domain name (FQDN).</p>
|
|
539
|
+
*/
|
|
540
|
+
Host?: string;
|
|
541
|
+
/**
|
|
542
|
+
* <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
|
|
543
|
+
*/
|
|
544
|
+
HypervisorArn?: string;
|
|
545
|
+
/**
|
|
546
|
+
* <p>The Amazon Resource Name (ARN) of the KMS
|
|
547
|
+
* used to encrypt the hypervisor.</p>
|
|
548
|
+
*/
|
|
549
|
+
KmsKeyArn?: string;
|
|
550
|
+
/**
|
|
551
|
+
* <p>This is the name of the specified hypervisor.</p>
|
|
552
|
+
*/
|
|
553
|
+
Name?: string;
|
|
554
|
+
/**
|
|
555
|
+
* <p>The Amazon Resource Name (ARN) of the group of gateways within
|
|
556
|
+
* the requested log.</p>
|
|
557
|
+
*/
|
|
558
|
+
LogGroupArn?: string;
|
|
559
|
+
/**
|
|
560
|
+
* <p>This is the current state of the specified hypervisor.</p>
|
|
561
|
+
* <p>The possible states are <code>PENDING</code>, <code>ONLINE</code>,
|
|
562
|
+
* <code>OFFLINE</code>, or <code>ERROR</code>.</p>
|
|
563
|
+
*/
|
|
564
|
+
State?: HypervisorState | string;
|
|
565
|
+
/**
|
|
566
|
+
* <p>This is the time when the most recent successful sync
|
|
567
|
+
* of metadata occurred.</p>
|
|
568
|
+
*/
|
|
569
|
+
LastSuccessfulMetadataSyncTime?: Date;
|
|
570
|
+
/**
|
|
571
|
+
* <p>This is the most recent status for the indicated metadata sync.</p>
|
|
572
|
+
*/
|
|
573
|
+
LatestMetadataSyncStatusMessage?: string;
|
|
574
|
+
/**
|
|
575
|
+
* <p>This is the most recent status for the indicated metadata sync.</p>
|
|
576
|
+
*/
|
|
577
|
+
LatestMetadataSyncStatus?: SyncMetadataStatus | string;
|
|
578
|
+
}
|
|
579
|
+
export interface GetHypervisorOutput {
|
|
580
|
+
/**
|
|
581
|
+
* <p>Details about the requested hypervisor.</p>
|
|
582
|
+
*/
|
|
583
|
+
Hypervisor?: HypervisorDetails;
|
|
584
|
+
}
|
|
585
|
+
export interface GetHypervisorPropertyMappingsInput {
|
|
586
|
+
/**
|
|
587
|
+
* <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
|
|
588
|
+
*/
|
|
589
|
+
HypervisorArn: string | undefined;
|
|
590
|
+
}
|
|
591
|
+
/**
|
|
592
|
+
* <p>This displays the mapping of on-premises VMware tags to the
|
|
593
|
+
* corresponding Amazon Web Services tags.</p>
|
|
594
|
+
*/
|
|
595
|
+
export interface VmwareToAwsTagMapping {
|
|
596
|
+
/**
|
|
597
|
+
* <p>The is the category of VMware.</p>
|
|
598
|
+
*/
|
|
599
|
+
VmwareCategory: string | undefined;
|
|
600
|
+
/**
|
|
601
|
+
* <p>This is the user-defined name of a VMware tag.</p>
|
|
602
|
+
*/
|
|
603
|
+
VmwareTagName: string | undefined;
|
|
604
|
+
/**
|
|
605
|
+
* <p>The key part of the Amazon Web Services tag's key-value pair.</p>
|
|
606
|
+
*/
|
|
607
|
+
AwsTagKey: string | undefined;
|
|
608
|
+
/**
|
|
609
|
+
* <p>The value part of the Amazon Web Services tag's key-value pair.</p>
|
|
610
|
+
*/
|
|
611
|
+
AwsTagValue: string | undefined;
|
|
612
|
+
}
|
|
613
|
+
export interface GetHypervisorPropertyMappingsOutput {
|
|
614
|
+
/**
|
|
615
|
+
* <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
|
|
616
|
+
*/
|
|
617
|
+
HypervisorArn?: string;
|
|
618
|
+
/**
|
|
619
|
+
* <p>This is a display of the mappings of on-premises VMware tags to the
|
|
620
|
+
* Amazon Web Services tags.</p>
|
|
621
|
+
*/
|
|
622
|
+
VmwareToAwsTagMappings?: VmwareToAwsTagMapping[];
|
|
623
|
+
/**
|
|
624
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role.</p>
|
|
625
|
+
*/
|
|
626
|
+
IamRoleArn?: string;
|
|
627
|
+
}
|
|
628
|
+
export interface PutHypervisorPropertyMappingsInput {
|
|
629
|
+
/**
|
|
630
|
+
* <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
|
|
631
|
+
*/
|
|
632
|
+
HypervisorArn: string | undefined;
|
|
633
|
+
/**
|
|
634
|
+
* <p>This action requests the mappings of on-premises VMware tags to the
|
|
635
|
+
* Amazon Web Services tags.</p>
|
|
636
|
+
*/
|
|
637
|
+
VmwareToAwsTagMappings: VmwareToAwsTagMapping[] | undefined;
|
|
638
|
+
/**
|
|
639
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role.</p>
|
|
640
|
+
*/
|
|
641
|
+
IamRoleArn: string | undefined;
|
|
642
|
+
}
|
|
643
|
+
export interface PutHypervisorPropertyMappingsOutput {
|
|
644
|
+
/**
|
|
645
|
+
* <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
|
|
646
|
+
*/
|
|
647
|
+
HypervisorArn?: string;
|
|
648
|
+
}
|
|
415
649
|
export interface ImportHypervisorConfigurationInput {
|
|
416
650
|
/**
|
|
417
651
|
* <p>The name of the hypervisor.</p>
|
|
@@ -458,12 +692,6 @@ export interface ListHypervisorsInput {
|
|
|
458
692
|
*/
|
|
459
693
|
NextToken?: string;
|
|
460
694
|
}
|
|
461
|
-
export declare enum HypervisorState {
|
|
462
|
-
ERROR = "ERROR",
|
|
463
|
-
OFFLINE = "OFFLINE",
|
|
464
|
-
ONLINE = "ONLINE",
|
|
465
|
-
PENDING = "PENDING"
|
|
466
|
-
}
|
|
467
695
|
/**
|
|
468
696
|
* <p>Represents the hypervisor's permissions to which the gateway will connect.</p>
|
|
469
697
|
* <p>A hypervisor is hardware, software, or firmware that creates and manages virtual machines,
|
|
@@ -507,6 +735,18 @@ export interface ListHypervisorsOutput {
|
|
|
507
735
|
*/
|
|
508
736
|
NextToken?: string;
|
|
509
737
|
}
|
|
738
|
+
export interface StartVirtualMachinesMetadataSyncInput {
|
|
739
|
+
/**
|
|
740
|
+
* <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
|
|
741
|
+
*/
|
|
742
|
+
HypervisorArn: string | undefined;
|
|
743
|
+
}
|
|
744
|
+
export interface StartVirtualMachinesMetadataSyncOutput {
|
|
745
|
+
/**
|
|
746
|
+
* <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
|
|
747
|
+
*/
|
|
748
|
+
HypervisorArn?: string;
|
|
749
|
+
}
|
|
510
750
|
export interface UpdateHypervisorInput {
|
|
511
751
|
/**
|
|
512
752
|
* <p>The Amazon Resource Name (ARN) of the hypervisor to update.</p>
|
|
@@ -529,6 +769,10 @@ export interface UpdateHypervisorInput {
|
|
|
529
769
|
* <p>The updated name for the hypervisor</p>
|
|
530
770
|
*/
|
|
531
771
|
Name?: string;
|
|
772
|
+
/**
|
|
773
|
+
* <p>The Amazon Resource Name (ARN) of the group of gateways within the requested log.</p>
|
|
774
|
+
*/
|
|
775
|
+
LogGroupArn?: string;
|
|
532
776
|
}
|
|
533
777
|
export interface UpdateHypervisorOutput {
|
|
534
778
|
/**
|
|
@@ -590,6 +834,26 @@ export interface GetVirtualMachineInput {
|
|
|
590
834
|
*/
|
|
591
835
|
ResourceArn: string | undefined;
|
|
592
836
|
}
|
|
837
|
+
/**
|
|
838
|
+
* <p>A VMware tag is a tag attached to a specific virtual machine.
|
|
839
|
+
* A <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_Tag.html">tag</a>
|
|
840
|
+
* is a key-value pair you can use to manage, filter, and search for your resources.</p>
|
|
841
|
+
* <p>The content of VMware tags can be matched to Amazon Web Services tags.</p>
|
|
842
|
+
*/
|
|
843
|
+
export interface VmwareTag {
|
|
844
|
+
/**
|
|
845
|
+
* <p>The is the category of VMware.</p>
|
|
846
|
+
*/
|
|
847
|
+
VmwareCategory?: string;
|
|
848
|
+
/**
|
|
849
|
+
* <p>This is the user-defined name of a VMware tag.</p>
|
|
850
|
+
*/
|
|
851
|
+
VmwareTagName?: string;
|
|
852
|
+
/**
|
|
853
|
+
* <p>This is a user-defined description of a VMware tag.</p>
|
|
854
|
+
*/
|
|
855
|
+
VmwareTagDescription?: string;
|
|
856
|
+
}
|
|
593
857
|
/**
|
|
594
858
|
* <p>Your <code>VirtualMachine</code> objects, ordered by their Amazon Resource Names (ARNs).</p>
|
|
595
859
|
*/
|
|
@@ -619,6 +883,11 @@ export interface VirtualMachineDetails {
|
|
|
619
883
|
* <p>The most recent date a virtual machine was backed up, in Unix format and UTC time.</p>
|
|
620
884
|
*/
|
|
621
885
|
LastBackupDate?: Date;
|
|
886
|
+
/**
|
|
887
|
+
* <p>These are the details of the VMware tags associated with the specified
|
|
888
|
+
* virtual machine.</p>
|
|
889
|
+
*/
|
|
890
|
+
VmwareTags?: VmwareTag[];
|
|
622
891
|
}
|
|
623
892
|
export interface GetVirtualMachineOutput {
|
|
624
893
|
/**
|
|
@@ -697,6 +966,26 @@ export declare const AssociateGatewayToServerInputFilterSensitiveLog: (obj: Asso
|
|
|
697
966
|
* @internal
|
|
698
967
|
*/
|
|
699
968
|
export declare const AssociateGatewayToServerOutputFilterSensitiveLog: (obj: AssociateGatewayToServerOutput) => any;
|
|
969
|
+
/**
|
|
970
|
+
* @internal
|
|
971
|
+
*/
|
|
972
|
+
export declare const GetBandwidthRateLimitScheduleInputFilterSensitiveLog: (obj: GetBandwidthRateLimitScheduleInput) => any;
|
|
973
|
+
/**
|
|
974
|
+
* @internal
|
|
975
|
+
*/
|
|
976
|
+
export declare const BandwidthRateLimitIntervalFilterSensitiveLog: (obj: BandwidthRateLimitInterval) => any;
|
|
977
|
+
/**
|
|
978
|
+
* @internal
|
|
979
|
+
*/
|
|
980
|
+
export declare const GetBandwidthRateLimitScheduleOutputFilterSensitiveLog: (obj: GetBandwidthRateLimitScheduleOutput) => any;
|
|
981
|
+
/**
|
|
982
|
+
* @internal
|
|
983
|
+
*/
|
|
984
|
+
export declare const PutBandwidthRateLimitScheduleInputFilterSensitiveLog: (obj: PutBandwidthRateLimitScheduleInput) => any;
|
|
985
|
+
/**
|
|
986
|
+
* @internal
|
|
987
|
+
*/
|
|
988
|
+
export declare const PutBandwidthRateLimitScheduleOutputFilterSensitiveLog: (obj: PutBandwidthRateLimitScheduleOutput) => any;
|
|
700
989
|
/**
|
|
701
990
|
* @internal
|
|
702
991
|
*/
|
|
@@ -793,6 +1082,38 @@ export declare const DeleteHypervisorInputFilterSensitiveLog: (obj: DeleteHyperv
|
|
|
793
1082
|
* @internal
|
|
794
1083
|
*/
|
|
795
1084
|
export declare const DeleteHypervisorOutputFilterSensitiveLog: (obj: DeleteHypervisorOutput) => any;
|
|
1085
|
+
/**
|
|
1086
|
+
* @internal
|
|
1087
|
+
*/
|
|
1088
|
+
export declare const GetHypervisorInputFilterSensitiveLog: (obj: GetHypervisorInput) => any;
|
|
1089
|
+
/**
|
|
1090
|
+
* @internal
|
|
1091
|
+
*/
|
|
1092
|
+
export declare const HypervisorDetailsFilterSensitiveLog: (obj: HypervisorDetails) => any;
|
|
1093
|
+
/**
|
|
1094
|
+
* @internal
|
|
1095
|
+
*/
|
|
1096
|
+
export declare const GetHypervisorOutputFilterSensitiveLog: (obj: GetHypervisorOutput) => any;
|
|
1097
|
+
/**
|
|
1098
|
+
* @internal
|
|
1099
|
+
*/
|
|
1100
|
+
export declare const GetHypervisorPropertyMappingsInputFilterSensitiveLog: (obj: GetHypervisorPropertyMappingsInput) => any;
|
|
1101
|
+
/**
|
|
1102
|
+
* @internal
|
|
1103
|
+
*/
|
|
1104
|
+
export declare const VmwareToAwsTagMappingFilterSensitiveLog: (obj: VmwareToAwsTagMapping) => any;
|
|
1105
|
+
/**
|
|
1106
|
+
* @internal
|
|
1107
|
+
*/
|
|
1108
|
+
export declare const GetHypervisorPropertyMappingsOutputFilterSensitiveLog: (obj: GetHypervisorPropertyMappingsOutput) => any;
|
|
1109
|
+
/**
|
|
1110
|
+
* @internal
|
|
1111
|
+
*/
|
|
1112
|
+
export declare const PutHypervisorPropertyMappingsInputFilterSensitiveLog: (obj: PutHypervisorPropertyMappingsInput) => any;
|
|
1113
|
+
/**
|
|
1114
|
+
* @internal
|
|
1115
|
+
*/
|
|
1116
|
+
export declare const PutHypervisorPropertyMappingsOutputFilterSensitiveLog: (obj: PutHypervisorPropertyMappingsOutput) => any;
|
|
796
1117
|
/**
|
|
797
1118
|
* @internal
|
|
798
1119
|
*/
|
|
@@ -813,6 +1134,14 @@ export declare const HypervisorFilterSensitiveLog: (obj: Hypervisor) => any;
|
|
|
813
1134
|
* @internal
|
|
814
1135
|
*/
|
|
815
1136
|
export declare const ListHypervisorsOutputFilterSensitiveLog: (obj: ListHypervisorsOutput) => any;
|
|
1137
|
+
/**
|
|
1138
|
+
* @internal
|
|
1139
|
+
*/
|
|
1140
|
+
export declare const StartVirtualMachinesMetadataSyncInputFilterSensitiveLog: (obj: StartVirtualMachinesMetadataSyncInput) => any;
|
|
1141
|
+
/**
|
|
1142
|
+
* @internal
|
|
1143
|
+
*/
|
|
1144
|
+
export declare const StartVirtualMachinesMetadataSyncOutputFilterSensitiveLog: (obj: StartVirtualMachinesMetadataSyncOutput) => any;
|
|
816
1145
|
/**
|
|
817
1146
|
* @internal
|
|
818
1147
|
*/
|
|
@@ -849,6 +1178,10 @@ export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceO
|
|
|
849
1178
|
* @internal
|
|
850
1179
|
*/
|
|
851
1180
|
export declare const GetVirtualMachineInputFilterSensitiveLog: (obj: GetVirtualMachineInput) => any;
|
|
1181
|
+
/**
|
|
1182
|
+
* @internal
|
|
1183
|
+
*/
|
|
1184
|
+
export declare const VmwareTagFilterSensitiveLog: (obj: VmwareTag) => any;
|
|
852
1185
|
/**
|
|
853
1186
|
* @internal
|
|
854
1187
|
*/
|
|
@@ -5,14 +5,20 @@ 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 { GetBandwidthRateLimitScheduleCommandInput, GetBandwidthRateLimitScheduleCommandOutput } from "../commands/GetBandwidthRateLimitScheduleCommand";
|
|
8
9
|
import { GetGatewayCommandInput, GetGatewayCommandOutput } from "../commands/GetGatewayCommand";
|
|
10
|
+
import { GetHypervisorCommandInput, GetHypervisorCommandOutput } from "../commands/GetHypervisorCommand";
|
|
11
|
+
import { GetHypervisorPropertyMappingsCommandInput, GetHypervisorPropertyMappingsCommandOutput } from "../commands/GetHypervisorPropertyMappingsCommand";
|
|
9
12
|
import { GetVirtualMachineCommandInput, GetVirtualMachineCommandOutput } from "../commands/GetVirtualMachineCommand";
|
|
10
13
|
import { ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput } from "../commands/ImportHypervisorConfigurationCommand";
|
|
11
14
|
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
|
|
12
15
|
import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "../commands/ListHypervisorsCommand";
|
|
13
16
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
14
17
|
import { ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput } from "../commands/ListVirtualMachinesCommand";
|
|
18
|
+
import { PutBandwidthRateLimitScheduleCommandInput, PutBandwidthRateLimitScheduleCommandOutput } from "../commands/PutBandwidthRateLimitScheduleCommand";
|
|
19
|
+
import { PutHypervisorPropertyMappingsCommandInput, PutHypervisorPropertyMappingsCommandOutput } from "../commands/PutHypervisorPropertyMappingsCommand";
|
|
15
20
|
import { PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput } from "../commands/PutMaintenanceStartTimeCommand";
|
|
21
|
+
import { StartVirtualMachinesMetadataSyncCommandInput, StartVirtualMachinesMetadataSyncCommandOutput } from "../commands/StartVirtualMachinesMetadataSyncCommand";
|
|
16
22
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
17
23
|
import { TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput } from "../commands/TestHypervisorConfigurationCommand";
|
|
18
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -24,14 +30,20 @@ export declare const serializeAws_json1_0CreateGatewayCommand: (input: CreateGat
|
|
|
24
30
|
export declare const serializeAws_json1_0DeleteGatewayCommand: (input: DeleteGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
31
|
export declare const serializeAws_json1_0DeleteHypervisorCommand: (input: DeleteHypervisorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
32
|
export declare const serializeAws_json1_0DisassociateGatewayFromServerCommand: (input: DisassociateGatewayFromServerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_json1_0GetBandwidthRateLimitScheduleCommand: (input: GetBandwidthRateLimitScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
34
|
export declare const serializeAws_json1_0GetGatewayCommand: (input: GetGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_json1_0GetHypervisorCommand: (input: GetHypervisorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_json1_0GetHypervisorPropertyMappingsCommand: (input: GetHypervisorPropertyMappingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
37
|
export declare const serializeAws_json1_0GetVirtualMachineCommand: (input: GetVirtualMachineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
38
|
export declare const serializeAws_json1_0ImportHypervisorConfigurationCommand: (input: ImportHypervisorConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
39
|
export declare const serializeAws_json1_0ListGatewaysCommand: (input: ListGatewaysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
40
|
export declare const serializeAws_json1_0ListHypervisorsCommand: (input: ListHypervisorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
41
|
export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
42
|
export declare const serializeAws_json1_0ListVirtualMachinesCommand: (input: ListVirtualMachinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
export declare const serializeAws_json1_0PutBandwidthRateLimitScheduleCommand: (input: PutBandwidthRateLimitScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
export declare const serializeAws_json1_0PutHypervisorPropertyMappingsCommand: (input: PutHypervisorPropertyMappingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
45
|
export declare const serializeAws_json1_0PutMaintenanceStartTimeCommand: (input: PutMaintenanceStartTimeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
export declare const serializeAws_json1_0StartVirtualMachinesMetadataSyncCommand: (input: StartVirtualMachinesMetadataSyncCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
47
|
export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
48
|
export declare const serializeAws_json1_0TestHypervisorConfigurationCommand: (input: TestHypervisorConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
49
|
export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -43,14 +55,20 @@ export declare const deserializeAws_json1_0CreateGatewayCommand: (output: __Http
|
|
|
43
55
|
export declare const deserializeAws_json1_0DeleteGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGatewayCommandOutput>;
|
|
44
56
|
export declare const deserializeAws_json1_0DeleteHypervisorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHypervisorCommandOutput>;
|
|
45
57
|
export declare const deserializeAws_json1_0DisassociateGatewayFromServerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateGatewayFromServerCommandOutput>;
|
|
58
|
+
export declare const deserializeAws_json1_0GetBandwidthRateLimitScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBandwidthRateLimitScheduleCommandOutput>;
|
|
46
59
|
export declare const deserializeAws_json1_0GetGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGatewayCommandOutput>;
|
|
60
|
+
export declare const deserializeAws_json1_0GetHypervisorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetHypervisorCommandOutput>;
|
|
61
|
+
export declare const deserializeAws_json1_0GetHypervisorPropertyMappingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetHypervisorPropertyMappingsCommandOutput>;
|
|
47
62
|
export declare const deserializeAws_json1_0GetVirtualMachineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVirtualMachineCommandOutput>;
|
|
48
63
|
export declare const deserializeAws_json1_0ImportHypervisorConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportHypervisorConfigurationCommandOutput>;
|
|
49
64
|
export declare const deserializeAws_json1_0ListGatewaysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGatewaysCommandOutput>;
|
|
50
65
|
export declare const deserializeAws_json1_0ListHypervisorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHypervisorsCommandOutput>;
|
|
51
66
|
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
52
67
|
export declare const deserializeAws_json1_0ListVirtualMachinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVirtualMachinesCommandOutput>;
|
|
68
|
+
export declare const deserializeAws_json1_0PutBandwidthRateLimitScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutBandwidthRateLimitScheduleCommandOutput>;
|
|
69
|
+
export declare const deserializeAws_json1_0PutHypervisorPropertyMappingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutHypervisorPropertyMappingsCommandOutput>;
|
|
53
70
|
export declare const deserializeAws_json1_0PutMaintenanceStartTimeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMaintenanceStartTimeCommandOutput>;
|
|
71
|
+
export declare const deserializeAws_json1_0StartVirtualMachinesMetadataSyncCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartVirtualMachinesMetadataSyncCommandOutput>;
|
|
54
72
|
export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
55
73
|
export declare const deserializeAws_json1_0TestHypervisorConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TestHypervisorConfigurationCommandOutput>;
|
|
56
74
|
export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
@@ -20,10 +20,22 @@ import {
|
|
|
20
20
|
DisassociateGatewayFromServerCommandInput,
|
|
21
21
|
DisassociateGatewayFromServerCommandOutput,
|
|
22
22
|
} from "./commands/DisassociateGatewayFromServerCommand";
|
|
23
|
+
import {
|
|
24
|
+
GetBandwidthRateLimitScheduleCommandInput,
|
|
25
|
+
GetBandwidthRateLimitScheduleCommandOutput,
|
|
26
|
+
} from "./commands/GetBandwidthRateLimitScheduleCommand";
|
|
23
27
|
import {
|
|
24
28
|
GetGatewayCommandInput,
|
|
25
29
|
GetGatewayCommandOutput,
|
|
26
30
|
} from "./commands/GetGatewayCommand";
|
|
31
|
+
import {
|
|
32
|
+
GetHypervisorCommandInput,
|
|
33
|
+
GetHypervisorCommandOutput,
|
|
34
|
+
} from "./commands/GetHypervisorCommand";
|
|
35
|
+
import {
|
|
36
|
+
GetHypervisorPropertyMappingsCommandInput,
|
|
37
|
+
GetHypervisorPropertyMappingsCommandOutput,
|
|
38
|
+
} from "./commands/GetHypervisorPropertyMappingsCommand";
|
|
27
39
|
import {
|
|
28
40
|
GetVirtualMachineCommandInput,
|
|
29
41
|
GetVirtualMachineCommandOutput,
|
|
@@ -48,10 +60,22 @@ import {
|
|
|
48
60
|
ListVirtualMachinesCommandInput,
|
|
49
61
|
ListVirtualMachinesCommandOutput,
|
|
50
62
|
} from "./commands/ListVirtualMachinesCommand";
|
|
63
|
+
import {
|
|
64
|
+
PutBandwidthRateLimitScheduleCommandInput,
|
|
65
|
+
PutBandwidthRateLimitScheduleCommandOutput,
|
|
66
|
+
} from "./commands/PutBandwidthRateLimitScheduleCommand";
|
|
67
|
+
import {
|
|
68
|
+
PutHypervisorPropertyMappingsCommandInput,
|
|
69
|
+
PutHypervisorPropertyMappingsCommandOutput,
|
|
70
|
+
} from "./commands/PutHypervisorPropertyMappingsCommand";
|
|
51
71
|
import {
|
|
52
72
|
PutMaintenanceStartTimeCommandInput,
|
|
53
73
|
PutMaintenanceStartTimeCommandOutput,
|
|
54
74
|
} from "./commands/PutMaintenanceStartTimeCommand";
|
|
75
|
+
import {
|
|
76
|
+
StartVirtualMachinesMetadataSyncCommandInput,
|
|
77
|
+
StartVirtualMachinesMetadataSyncCommandOutput,
|
|
78
|
+
} from "./commands/StartVirtualMachinesMetadataSyncCommand";
|
|
55
79
|
import {
|
|
56
80
|
TagResourceCommandInput,
|
|
57
81
|
TagResourceCommandOutput,
|
|
@@ -142,6 +166,19 @@ export declare class BackupGateway extends BackupGatewayClient {
|
|
|
142
166
|
options: __HttpHandlerOptions,
|
|
143
167
|
cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void
|
|
144
168
|
): void;
|
|
169
|
+
getBandwidthRateLimitSchedule(
|
|
170
|
+
args: GetBandwidthRateLimitScheduleCommandInput,
|
|
171
|
+
options?: __HttpHandlerOptions
|
|
172
|
+
): Promise<GetBandwidthRateLimitScheduleCommandOutput>;
|
|
173
|
+
getBandwidthRateLimitSchedule(
|
|
174
|
+
args: GetBandwidthRateLimitScheduleCommandInput,
|
|
175
|
+
cb: (err: any, data?: GetBandwidthRateLimitScheduleCommandOutput) => void
|
|
176
|
+
): void;
|
|
177
|
+
getBandwidthRateLimitSchedule(
|
|
178
|
+
args: GetBandwidthRateLimitScheduleCommandInput,
|
|
179
|
+
options: __HttpHandlerOptions,
|
|
180
|
+
cb: (err: any, data?: GetBandwidthRateLimitScheduleCommandOutput) => void
|
|
181
|
+
): void;
|
|
145
182
|
getGateway(
|
|
146
183
|
args: GetGatewayCommandInput,
|
|
147
184
|
options?: __HttpHandlerOptions
|
|
@@ -155,6 +192,32 @@ export declare class BackupGateway extends BackupGatewayClient {
|
|
|
155
192
|
options: __HttpHandlerOptions,
|
|
156
193
|
cb: (err: any, data?: GetGatewayCommandOutput) => void
|
|
157
194
|
): void;
|
|
195
|
+
getHypervisor(
|
|
196
|
+
args: GetHypervisorCommandInput,
|
|
197
|
+
options?: __HttpHandlerOptions
|
|
198
|
+
): Promise<GetHypervisorCommandOutput>;
|
|
199
|
+
getHypervisor(
|
|
200
|
+
args: GetHypervisorCommandInput,
|
|
201
|
+
cb: (err: any, data?: GetHypervisorCommandOutput) => void
|
|
202
|
+
): void;
|
|
203
|
+
getHypervisor(
|
|
204
|
+
args: GetHypervisorCommandInput,
|
|
205
|
+
options: __HttpHandlerOptions,
|
|
206
|
+
cb: (err: any, data?: GetHypervisorCommandOutput) => void
|
|
207
|
+
): void;
|
|
208
|
+
getHypervisorPropertyMappings(
|
|
209
|
+
args: GetHypervisorPropertyMappingsCommandInput,
|
|
210
|
+
options?: __HttpHandlerOptions
|
|
211
|
+
): Promise<GetHypervisorPropertyMappingsCommandOutput>;
|
|
212
|
+
getHypervisorPropertyMappings(
|
|
213
|
+
args: GetHypervisorPropertyMappingsCommandInput,
|
|
214
|
+
cb: (err: any, data?: GetHypervisorPropertyMappingsCommandOutput) => void
|
|
215
|
+
): void;
|
|
216
|
+
getHypervisorPropertyMappings(
|
|
217
|
+
args: GetHypervisorPropertyMappingsCommandInput,
|
|
218
|
+
options: __HttpHandlerOptions,
|
|
219
|
+
cb: (err: any, data?: GetHypervisorPropertyMappingsCommandOutput) => void
|
|
220
|
+
): void;
|
|
158
221
|
getVirtualMachine(
|
|
159
222
|
args: GetVirtualMachineCommandInput,
|
|
160
223
|
options?: __HttpHandlerOptions
|
|
@@ -233,6 +296,32 @@ export declare class BackupGateway extends BackupGatewayClient {
|
|
|
233
296
|
options: __HttpHandlerOptions,
|
|
234
297
|
cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void
|
|
235
298
|
): void;
|
|
299
|
+
putBandwidthRateLimitSchedule(
|
|
300
|
+
args: PutBandwidthRateLimitScheduleCommandInput,
|
|
301
|
+
options?: __HttpHandlerOptions
|
|
302
|
+
): Promise<PutBandwidthRateLimitScheduleCommandOutput>;
|
|
303
|
+
putBandwidthRateLimitSchedule(
|
|
304
|
+
args: PutBandwidthRateLimitScheduleCommandInput,
|
|
305
|
+
cb: (err: any, data?: PutBandwidthRateLimitScheduleCommandOutput) => void
|
|
306
|
+
): void;
|
|
307
|
+
putBandwidthRateLimitSchedule(
|
|
308
|
+
args: PutBandwidthRateLimitScheduleCommandInput,
|
|
309
|
+
options: __HttpHandlerOptions,
|
|
310
|
+
cb: (err: any, data?: PutBandwidthRateLimitScheduleCommandOutput) => void
|
|
311
|
+
): void;
|
|
312
|
+
putHypervisorPropertyMappings(
|
|
313
|
+
args: PutHypervisorPropertyMappingsCommandInput,
|
|
314
|
+
options?: __HttpHandlerOptions
|
|
315
|
+
): Promise<PutHypervisorPropertyMappingsCommandOutput>;
|
|
316
|
+
putHypervisorPropertyMappings(
|
|
317
|
+
args: PutHypervisorPropertyMappingsCommandInput,
|
|
318
|
+
cb: (err: any, data?: PutHypervisorPropertyMappingsCommandOutput) => void
|
|
319
|
+
): void;
|
|
320
|
+
putHypervisorPropertyMappings(
|
|
321
|
+
args: PutHypervisorPropertyMappingsCommandInput,
|
|
322
|
+
options: __HttpHandlerOptions,
|
|
323
|
+
cb: (err: any, data?: PutHypervisorPropertyMappingsCommandOutput) => void
|
|
324
|
+
): void;
|
|
236
325
|
putMaintenanceStartTime(
|
|
237
326
|
args: PutMaintenanceStartTimeCommandInput,
|
|
238
327
|
options?: __HttpHandlerOptions
|
|
@@ -246,6 +335,19 @@ export declare class BackupGateway extends BackupGatewayClient {
|
|
|
246
335
|
options: __HttpHandlerOptions,
|
|
247
336
|
cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void
|
|
248
337
|
): void;
|
|
338
|
+
startVirtualMachinesMetadataSync(
|
|
339
|
+
args: StartVirtualMachinesMetadataSyncCommandInput,
|
|
340
|
+
options?: __HttpHandlerOptions
|
|
341
|
+
): Promise<StartVirtualMachinesMetadataSyncCommandOutput>;
|
|
342
|
+
startVirtualMachinesMetadataSync(
|
|
343
|
+
args: StartVirtualMachinesMetadataSyncCommandInput,
|
|
344
|
+
cb: (err: any, data?: StartVirtualMachinesMetadataSyncCommandOutput) => void
|
|
345
|
+
): void;
|
|
346
|
+
startVirtualMachinesMetadataSync(
|
|
347
|
+
args: StartVirtualMachinesMetadataSyncCommandInput,
|
|
348
|
+
options: __HttpHandlerOptions,
|
|
349
|
+
cb: (err: any, data?: StartVirtualMachinesMetadataSyncCommandOutput) => void
|
|
350
|
+
): void;
|
|
249
351
|
tagResource(
|
|
250
352
|
args: TagResourceCommandInput,
|
|
251
353
|
options?: __HttpHandlerOptions
|