@googleapis/vmmigration 3.0.0 → 4.0.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/CHANGELOG.md +22 -0
- package/build/v1.d.ts +421 -2
- package/build/v1.js.map +1 -1
- package/build/v1alpha1.d.ts +423 -0
- package/build/v1alpha1.js.map +1 -1
- package/package.json +1 -1
- package/v1.ts +411 -2
- package/v1alpha1.ts +413 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/vmmigration-v3.0.0...vmmigration-v4.0.0) (2023-10-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* **vmmigration:** This release has breaking changes.
|
|
9
|
+
* **vmmigration:** This release has breaking changes.
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* regenerate index files ([751227d](https://github.com/googleapis/google-api-nodejs-client/commit/751227d3926c946b5db5edb58f0086e074a61169))
|
|
14
|
+
* **vmmigration:** update the API ([48fd628](https://github.com/googleapis/google-api-nodejs-client/commit/48fd628faeb8187f5e895d136d4f4a2ee8f7bb13))
|
|
15
|
+
* **vmmigration:** update the API ([1d3ba23](https://github.com/googleapis/google-api-nodejs-client/commit/1d3ba236d410d2e8d04a508ab6283ceccda0bcaf))
|
|
16
|
+
* **vmmigration:** update the API ([75cbb15](https://github.com/googleapis/google-api-nodejs-client/commit/75cbb1513e9ea7b1d69b82c2fb24d8fbdde69554))
|
|
17
|
+
* **vmmigration:** update the API ([433922a](https://github.com/googleapis/google-api-nodejs-client/commit/433922ae8112bcc926d12e855a2c5a1ce5ea35de))
|
|
18
|
+
* **vmmigration:** update the API ([3adbd55](https://github.com/googleapis/google-api-nodejs-client/commit/3adbd5557e8fe26099233ea0609ce916418f2df9))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **deps:** update dependency googleapis-common to v7 ([9491ec1](https://github.com/googleapis/google-api-nodejs-client/commit/9491ec1cdc3c413e7d73edcfcd59cf5c28a7c855))
|
|
24
|
+
|
|
3
25
|
## [3.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/vmmigration-v2.0.0...vmmigration-v3.0.0) (2023-08-25)
|
|
4
26
|
|
|
5
27
|
|
package/build/v1.d.ts
CHANGED
|
@@ -235,9 +235,9 @@ export declare namespace vmmigration_v1 {
|
|
|
235
235
|
*/
|
|
236
236
|
firmware?: string | null;
|
|
237
237
|
/**
|
|
238
|
-
* Output only.
|
|
238
|
+
* Output only. Information about VM capabilities needed for some Compute Engine features.
|
|
239
239
|
*/
|
|
240
|
-
|
|
240
|
+
vmCapabilitiesInfo?: Schema$VmCapabilities;
|
|
241
241
|
}
|
|
242
242
|
/**
|
|
243
243
|
* AwsVmDetails describes a VM in AWS.
|
|
@@ -327,6 +327,168 @@ export declare namespace vmmigration_v1 {
|
|
|
327
327
|
*/
|
|
328
328
|
details?: Schema$AwsVmDetails[];
|
|
329
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* The details of an Azure VM disk.
|
|
332
|
+
*/
|
|
333
|
+
export interface Schema$AzureDiskDetails {
|
|
334
|
+
/**
|
|
335
|
+
* Azure disk ID.
|
|
336
|
+
*/
|
|
337
|
+
diskId?: string | null;
|
|
338
|
+
/**
|
|
339
|
+
* The ordinal number of the disk.
|
|
340
|
+
*/
|
|
341
|
+
diskNumber?: number | null;
|
|
342
|
+
/**
|
|
343
|
+
* Size in GB.
|
|
344
|
+
*/
|
|
345
|
+
sizeGb?: string | null;
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* AzureSourceDetails message describes a specific source details for the Azure source type.
|
|
349
|
+
*/
|
|
350
|
+
export interface Schema$AzureSourceDetails {
|
|
351
|
+
/**
|
|
352
|
+
* Immutable. The Azure location (region) that the source VMs will be migrated from.
|
|
353
|
+
*/
|
|
354
|
+
azureLocation?: string | null;
|
|
355
|
+
/**
|
|
356
|
+
* Azure Credentials using tenant ID, client ID and secret.
|
|
357
|
+
*/
|
|
358
|
+
clientSecretCreds?: Schema$ClientSecretCredentials;
|
|
359
|
+
/**
|
|
360
|
+
* Output only. Provides details on the state of the Source in case of an error.
|
|
361
|
+
*/
|
|
362
|
+
error?: Schema$Status;
|
|
363
|
+
/**
|
|
364
|
+
* User specified tags to add to every M2VM generated resource in Azure. These tags will be set in addition to the default tags that are set as part of the migration process. The tags must not begin with the reserved prefix `m4ce` or `m2vm`.
|
|
365
|
+
*/
|
|
366
|
+
migrationResourcesUserTags?: {
|
|
367
|
+
[key: string]: string;
|
|
368
|
+
} | null;
|
|
369
|
+
/**
|
|
370
|
+
* Output only. The ID of the Azure resource group that contains all resources related to the migration process of this source.
|
|
371
|
+
*/
|
|
372
|
+
resourceGroupId?: string | null;
|
|
373
|
+
/**
|
|
374
|
+
* Output only. State of the source as determined by the health check.
|
|
375
|
+
*/
|
|
376
|
+
state?: string | null;
|
|
377
|
+
/**
|
|
378
|
+
* Immutable. Azure subscription ID.
|
|
379
|
+
*/
|
|
380
|
+
subscriptionId?: string | null;
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* Represent the source Azure VM details.
|
|
384
|
+
*/
|
|
385
|
+
export interface Schema$AzureSourceVmDetails {
|
|
386
|
+
/**
|
|
387
|
+
* The total size of the disks being migrated in bytes.
|
|
388
|
+
*/
|
|
389
|
+
committedStorageBytes?: string | null;
|
|
390
|
+
/**
|
|
391
|
+
* The disks attached to the source VM.
|
|
392
|
+
*/
|
|
393
|
+
disks?: Schema$AzureDiskDetails[];
|
|
394
|
+
/**
|
|
395
|
+
* The firmware type of the source VM.
|
|
396
|
+
*/
|
|
397
|
+
firmware?: string | null;
|
|
398
|
+
/**
|
|
399
|
+
* Output only. Information about VM capabilities needed for some Compute Engine features.
|
|
400
|
+
*/
|
|
401
|
+
vmCapabilitiesInfo?: Schema$VmCapabilities;
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* AwsVmDetails describes a VM in AWS.
|
|
405
|
+
*/
|
|
406
|
+
export interface Schema$AzureVmDetails {
|
|
407
|
+
/**
|
|
408
|
+
* The VM Boot Option.
|
|
409
|
+
*/
|
|
410
|
+
bootOption?: string | null;
|
|
411
|
+
/**
|
|
412
|
+
* The total size of the storage allocated to the VM in MB.
|
|
413
|
+
*/
|
|
414
|
+
committedStorageMb?: string | null;
|
|
415
|
+
/**
|
|
416
|
+
* The VM's ComputerName.
|
|
417
|
+
*/
|
|
418
|
+
computerName?: string | null;
|
|
419
|
+
/**
|
|
420
|
+
* The number of cpus the VM has.
|
|
421
|
+
*/
|
|
422
|
+
cpuCount?: number | null;
|
|
423
|
+
/**
|
|
424
|
+
* The number of disks the VM has, including OS disk.
|
|
425
|
+
*/
|
|
426
|
+
diskCount?: number | null;
|
|
427
|
+
/**
|
|
428
|
+
* Description of the data disks.
|
|
429
|
+
*/
|
|
430
|
+
disks?: Schema$Disk[];
|
|
431
|
+
/**
|
|
432
|
+
* The memory size of the VM in MB.
|
|
433
|
+
*/
|
|
434
|
+
memoryMb?: number | null;
|
|
435
|
+
/**
|
|
436
|
+
* Description of the OS.
|
|
437
|
+
*/
|
|
438
|
+
osDescription?: Schema$OSDescription;
|
|
439
|
+
/**
|
|
440
|
+
* Description of the OS disk.
|
|
441
|
+
*/
|
|
442
|
+
osDisk?: Schema$OSDisk;
|
|
443
|
+
/**
|
|
444
|
+
* The power state of the VM at the moment list was taken.
|
|
445
|
+
*/
|
|
446
|
+
powerState?: string | null;
|
|
447
|
+
/**
|
|
448
|
+
* The tags of the VM.
|
|
449
|
+
*/
|
|
450
|
+
tags?: {
|
|
451
|
+
[key: string]: string;
|
|
452
|
+
} | null;
|
|
453
|
+
/**
|
|
454
|
+
* The VM full path in Azure.
|
|
455
|
+
*/
|
|
456
|
+
vmId?: string | null;
|
|
457
|
+
/**
|
|
458
|
+
* VM size as configured in Azure. Determines the VM's hardware spec.
|
|
459
|
+
*/
|
|
460
|
+
vmSize?: string | null;
|
|
461
|
+
}
|
|
462
|
+
/**
|
|
463
|
+
* AzureVmsDetails describes VMs in Azure.
|
|
464
|
+
*/
|
|
465
|
+
export interface Schema$AzureVmsDetails {
|
|
466
|
+
/**
|
|
467
|
+
* The details of the Azure VMs.
|
|
468
|
+
*/
|
|
469
|
+
details?: Schema$AzureVmDetails[];
|
|
470
|
+
}
|
|
471
|
+
/**
|
|
472
|
+
* BootDiskDefaults hold information about the boot disk of a VM.
|
|
473
|
+
*/
|
|
474
|
+
export interface Schema$BootDiskDefaults {
|
|
475
|
+
/**
|
|
476
|
+
* Optional. Specifies a unique device name of your choice that is reflected into the /dev/disk/by-id/google-* tree of a Linux operating system running within the instance. If not specified, the server chooses a default device name to apply to this disk, in the form persistent-disk-x, where x is a number assigned by Google Compute Engine. This field is only applicable for persistent disks.
|
|
477
|
+
*/
|
|
478
|
+
deviceName?: string | null;
|
|
479
|
+
/**
|
|
480
|
+
* Optional. The name of the disk.
|
|
481
|
+
*/
|
|
482
|
+
diskName?: string | null;
|
|
483
|
+
/**
|
|
484
|
+
* Optional. The type of disk provisioning to use for the VM.
|
|
485
|
+
*/
|
|
486
|
+
diskType?: string | null;
|
|
487
|
+
/**
|
|
488
|
+
* The image to use when creating the disk.
|
|
489
|
+
*/
|
|
490
|
+
image?: Schema$DiskImageDefaults;
|
|
491
|
+
}
|
|
330
492
|
/**
|
|
331
493
|
* Request message for 'CancelCloneJob' request.
|
|
332
494
|
*/
|
|
@@ -342,6 +504,23 @@ export declare namespace vmmigration_v1 {
|
|
|
342
504
|
*/
|
|
343
505
|
export interface Schema$CancelOperationRequest {
|
|
344
506
|
}
|
|
507
|
+
/**
|
|
508
|
+
* Message describing Azure Credentials using tenant ID, client ID and secret.
|
|
509
|
+
*/
|
|
510
|
+
export interface Schema$ClientSecretCredentials {
|
|
511
|
+
/**
|
|
512
|
+
* Azure client ID.
|
|
513
|
+
*/
|
|
514
|
+
clientId?: string | null;
|
|
515
|
+
/**
|
|
516
|
+
* Input only. Azure client secret.
|
|
517
|
+
*/
|
|
518
|
+
clientSecret?: string | null;
|
|
519
|
+
/**
|
|
520
|
+
* Azure tenant ID.
|
|
521
|
+
*/
|
|
522
|
+
tenantId?: string | null;
|
|
523
|
+
}
|
|
345
524
|
/**
|
|
346
525
|
* CloneJob describes the process of creating a clone of a MigratingVM to the requested target based on the latest successful uploaded snapshots. While the migration cycles of a MigratingVm take place, it is possible to verify the uploaded VM can be started in the cloud, by creating a clone. The clone can be created without any downtime, and it is created using the latest snapshots which are already in the cloud. The cloneJob is only responsible for its work, not its products, which means once it is finished, it will never touch the instance it created. It will only delete it in case of the CloneJob being cancelled or upon failure to clone.
|
|
347
526
|
*/
|
|
@@ -416,10 +595,18 @@ export declare namespace vmmigration_v1 {
|
|
|
416
595
|
* The details of each Persistent Disk to create.
|
|
417
596
|
*/
|
|
418
597
|
disks?: Schema$PersistentDiskDefaults[];
|
|
598
|
+
/**
|
|
599
|
+
* Details of the disk only migration target.
|
|
600
|
+
*/
|
|
601
|
+
disksTargetDefaults?: Schema$DisksMigrationDisksTargetDefaults;
|
|
419
602
|
/**
|
|
420
603
|
* The full path of the resource of type TargetProject which represents the Compute Engine project in which to create the Persistent Disks.
|
|
421
604
|
*/
|
|
422
605
|
targetProject?: string | null;
|
|
606
|
+
/**
|
|
607
|
+
* Details of the VM migration target.
|
|
608
|
+
*/
|
|
609
|
+
vmTargetDefaults?: Schema$DisksMigrationVmTargetDefaults;
|
|
423
610
|
/**
|
|
424
611
|
* The zone in which to create the Persistent Disks.
|
|
425
612
|
*/
|
|
@@ -433,6 +620,14 @@ export declare namespace vmmigration_v1 {
|
|
|
433
620
|
* The details of each created Persistent Disk.
|
|
434
621
|
*/
|
|
435
622
|
disks?: Schema$PersistentDisk[];
|
|
623
|
+
/**
|
|
624
|
+
* Details of the disks-only migration target.
|
|
625
|
+
*/
|
|
626
|
+
disksTargetDetails?: Schema$DisksMigrationDisksTargetDetails;
|
|
627
|
+
/**
|
|
628
|
+
* Details for the VM the migrated data disks are attached to.
|
|
629
|
+
*/
|
|
630
|
+
vmTargetDetails?: Schema$DisksMigrationVmTargetDetails;
|
|
436
631
|
}
|
|
437
632
|
/**
|
|
438
633
|
* ComputeEngineTargetDefaults is a collection of details for creating a VM in a target Compute Engine project.
|
|
@@ -794,6 +989,112 @@ export declare namespace vmmigration_v1 {
|
|
|
794
989
|
*/
|
|
795
990
|
version?: string | null;
|
|
796
991
|
}
|
|
992
|
+
/**
|
|
993
|
+
* A message describing a data disk.
|
|
994
|
+
*/
|
|
995
|
+
export interface Schema$Disk {
|
|
996
|
+
/**
|
|
997
|
+
* The disk's Logical Unit Number (LUN).
|
|
998
|
+
*/
|
|
999
|
+
lun?: number | null;
|
|
1000
|
+
/**
|
|
1001
|
+
* The disk name.
|
|
1002
|
+
*/
|
|
1003
|
+
name?: string | null;
|
|
1004
|
+
/**
|
|
1005
|
+
* The disk size in GB.
|
|
1006
|
+
*/
|
|
1007
|
+
sizeGb?: number | null;
|
|
1008
|
+
}
|
|
1009
|
+
/**
|
|
1010
|
+
* Contains details about the image source used to create the disk.
|
|
1011
|
+
*/
|
|
1012
|
+
export interface Schema$DiskImageDefaults {
|
|
1013
|
+
/**
|
|
1014
|
+
* Required. The Image resource used when creating the disk.
|
|
1015
|
+
*/
|
|
1016
|
+
sourceImage?: string | null;
|
|
1017
|
+
}
|
|
1018
|
+
/**
|
|
1019
|
+
* Details for a disk only migration.
|
|
1020
|
+
*/
|
|
1021
|
+
export interface Schema$DisksMigrationDisksTargetDefaults {
|
|
1022
|
+
}
|
|
1023
|
+
/**
|
|
1024
|
+
* Details for a disks-only migration.
|
|
1025
|
+
*/
|
|
1026
|
+
export interface Schema$DisksMigrationDisksTargetDetails {
|
|
1027
|
+
}
|
|
1028
|
+
/**
|
|
1029
|
+
* Details for creation of a VM that migrated data disks will be attached to.
|
|
1030
|
+
*/
|
|
1031
|
+
export interface Schema$DisksMigrationVmTargetDefaults {
|
|
1032
|
+
/**
|
|
1033
|
+
* Optional. Additional licenses to assign to the VM.
|
|
1034
|
+
*/
|
|
1035
|
+
additionalLicenses?: string[] | null;
|
|
1036
|
+
/**
|
|
1037
|
+
* Optional. Details of the boot disk of the VM.
|
|
1038
|
+
*/
|
|
1039
|
+
bootDiskDefaults?: Schema$BootDiskDefaults;
|
|
1040
|
+
/**
|
|
1041
|
+
* Optional. Compute instance scheduling information (if empty default is used).
|
|
1042
|
+
*/
|
|
1043
|
+
computeScheduling?: Schema$ComputeScheduling;
|
|
1044
|
+
/**
|
|
1045
|
+
* Optional. The hostname to assign to the VM.
|
|
1046
|
+
*/
|
|
1047
|
+
hostname?: string | null;
|
|
1048
|
+
/**
|
|
1049
|
+
* Optional. A map of labels to associate with the VM.
|
|
1050
|
+
*/
|
|
1051
|
+
labels?: {
|
|
1052
|
+
[key: string]: string;
|
|
1053
|
+
} | null;
|
|
1054
|
+
/**
|
|
1055
|
+
* Required. The machine type to create the VM with.
|
|
1056
|
+
*/
|
|
1057
|
+
machineType?: string | null;
|
|
1058
|
+
/**
|
|
1059
|
+
* Optional. The machine type series to create the VM with. For presentation only.
|
|
1060
|
+
*/
|
|
1061
|
+
machineTypeSeries?: string | null;
|
|
1062
|
+
/**
|
|
1063
|
+
* Optional. The metadata key/value pairs to assign to the VM.
|
|
1064
|
+
*/
|
|
1065
|
+
metadata?: {
|
|
1066
|
+
[key: string]: string;
|
|
1067
|
+
} | null;
|
|
1068
|
+
/**
|
|
1069
|
+
* Optional. NICs to attach to the VM.
|
|
1070
|
+
*/
|
|
1071
|
+
networkInterfaces?: Schema$NetworkInterface[];
|
|
1072
|
+
/**
|
|
1073
|
+
* Optional. A list of network tags to associate with the VM.
|
|
1074
|
+
*/
|
|
1075
|
+
networkTags?: string[] | null;
|
|
1076
|
+
/**
|
|
1077
|
+
* Optional. Defines whether the instance has Secure Boot enabled. This can be set to true only if the VM boot option is EFI.
|
|
1078
|
+
*/
|
|
1079
|
+
secureBoot?: boolean | null;
|
|
1080
|
+
/**
|
|
1081
|
+
* Optional. The service account to associate the VM with.
|
|
1082
|
+
*/
|
|
1083
|
+
serviceAccount?: string | null;
|
|
1084
|
+
/**
|
|
1085
|
+
* Required. The name of the VM to create.
|
|
1086
|
+
*/
|
|
1087
|
+
vmName?: string | null;
|
|
1088
|
+
}
|
|
1089
|
+
/**
|
|
1090
|
+
* Details for the VM created VM as part of disks migration.
|
|
1091
|
+
*/
|
|
1092
|
+
export interface Schema$DisksMigrationVmTargetDetails {
|
|
1093
|
+
/**
|
|
1094
|
+
* Output only. The URI of the Compute Engine VM.
|
|
1095
|
+
*/
|
|
1096
|
+
vmUri?: string | null;
|
|
1097
|
+
}
|
|
797
1098
|
/**
|
|
798
1099
|
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
|
|
799
1100
|
*/
|
|
@@ -807,6 +1108,10 @@ export declare namespace vmmigration_v1 {
|
|
|
807
1108
|
* The description of the VMs in a Source of type AWS.
|
|
808
1109
|
*/
|
|
809
1110
|
awsVms?: Schema$AwsVmsDetails;
|
|
1111
|
+
/**
|
|
1112
|
+
* The description of the VMs in a Source of type Azure.
|
|
1113
|
+
*/
|
|
1114
|
+
azureVms?: Schema$AzureVmsDetails;
|
|
810
1115
|
/**
|
|
811
1116
|
* Output only. A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
|
|
812
1117
|
*/
|
|
@@ -1106,6 +1411,10 @@ export declare namespace vmmigration_v1 {
|
|
|
1106
1411
|
* Output only. Details of the VM from an AWS source.
|
|
1107
1412
|
*/
|
|
1108
1413
|
awsSourceVmDetails?: Schema$AwsSourceVmDetails;
|
|
1414
|
+
/**
|
|
1415
|
+
* Output only. Details of the VM from an Azure source.
|
|
1416
|
+
*/
|
|
1417
|
+
azureSourceVmDetails?: Schema$AzureSourceVmDetails;
|
|
1109
1418
|
/**
|
|
1110
1419
|
* Details of the target Persistent Disks in Compute Engine.
|
|
1111
1420
|
*/
|
|
@@ -1188,6 +1497,10 @@ export declare namespace vmmigration_v1 {
|
|
|
1188
1497
|
* Output only. The last time the migrating VM resource was updated.
|
|
1189
1498
|
*/
|
|
1190
1499
|
updateTime?: string | null;
|
|
1500
|
+
/**
|
|
1501
|
+
* Output only. Details of the VM from a Vmware source.
|
|
1502
|
+
*/
|
|
1503
|
+
vmwareSourceVmDetails?: Schema$VmwareSourceVmDetails;
|
|
1191
1504
|
}
|
|
1192
1505
|
/**
|
|
1193
1506
|
* Represents migration resource error information that can be used with google.rpc.Status message. MigrationError is used to present the user with error information in migration operations.
|
|
@@ -1322,6 +1635,44 @@ export declare namespace vmmigration_v1 {
|
|
|
1322
1635
|
*/
|
|
1323
1636
|
verb?: string | null;
|
|
1324
1637
|
}
|
|
1638
|
+
/**
|
|
1639
|
+
* A message describing the VM's OS. Including OS, Publisher, Offer and Plan if applicable.
|
|
1640
|
+
*/
|
|
1641
|
+
export interface Schema$OSDescription {
|
|
1642
|
+
/**
|
|
1643
|
+
* OS offer.
|
|
1644
|
+
*/
|
|
1645
|
+
offer?: string | null;
|
|
1646
|
+
/**
|
|
1647
|
+
* OS plan.
|
|
1648
|
+
*/
|
|
1649
|
+
plan?: string | null;
|
|
1650
|
+
/**
|
|
1651
|
+
* OS publisher.
|
|
1652
|
+
*/
|
|
1653
|
+
publisher?: string | null;
|
|
1654
|
+
/**
|
|
1655
|
+
* OS type.
|
|
1656
|
+
*/
|
|
1657
|
+
type?: string | null;
|
|
1658
|
+
}
|
|
1659
|
+
/**
|
|
1660
|
+
* A message describing the OS disk.
|
|
1661
|
+
*/
|
|
1662
|
+
export interface Schema$OSDisk {
|
|
1663
|
+
/**
|
|
1664
|
+
* The disk's full name.
|
|
1665
|
+
*/
|
|
1666
|
+
name?: string | null;
|
|
1667
|
+
/**
|
|
1668
|
+
* The disk's size in GB.
|
|
1669
|
+
*/
|
|
1670
|
+
sizeGb?: number | null;
|
|
1671
|
+
/**
|
|
1672
|
+
* The disk's type.
|
|
1673
|
+
*/
|
|
1674
|
+
type?: string | null;
|
|
1675
|
+
}
|
|
1325
1676
|
/**
|
|
1326
1677
|
* Request message for 'PauseMigration' request.
|
|
1327
1678
|
*/
|
|
@@ -1362,6 +1713,10 @@ export declare namespace vmmigration_v1 {
|
|
|
1362
1713
|
* Required. The ordinal number of the source VM disk.
|
|
1363
1714
|
*/
|
|
1364
1715
|
sourceDiskNumber?: number | null;
|
|
1716
|
+
/**
|
|
1717
|
+
* Optional. Details for attachment of the disk to a VM. Used when the disk is set to be attacked to a target VM.
|
|
1718
|
+
*/
|
|
1719
|
+
vmAttachmentDetails?: Schema$VmAttachmentDetails;
|
|
1365
1720
|
}
|
|
1366
1721
|
/**
|
|
1367
1722
|
* PostProcessingStep contains specific step details.
|
|
@@ -1505,6 +1860,10 @@ export declare namespace vmmigration_v1 {
|
|
|
1505
1860
|
* AWS type source details.
|
|
1506
1861
|
*/
|
|
1507
1862
|
aws?: Schema$AwsSourceDetails;
|
|
1863
|
+
/**
|
|
1864
|
+
* Azure type source details.
|
|
1865
|
+
*/
|
|
1866
|
+
azure?: Schema$AzureSourceDetails;
|
|
1508
1867
|
/**
|
|
1509
1868
|
* Output only. The create time timestamp.
|
|
1510
1869
|
*/
|
|
@@ -1673,6 +2032,28 @@ export declare namespace vmmigration_v1 {
|
|
|
1673
2032
|
*/
|
|
1674
2033
|
vms?: Schema$VmUtilizationInfo[];
|
|
1675
2034
|
}
|
|
2035
|
+
/**
|
|
2036
|
+
* Details for attachment of the disk to a VM.
|
|
2037
|
+
*/
|
|
2038
|
+
export interface Schema$VmAttachmentDetails {
|
|
2039
|
+
/**
|
|
2040
|
+
* Optional. Specifies a unique device name of your choice that is reflected into the /dev/disk/by-id/google-* tree of a Linux operating system running within the instance. If not specified, the server chooses a default device name to apply to this disk, in the form persistent-disk-x, where x is a number assigned by Google Compute Engine. This field is only applicable for persistent disks.
|
|
2041
|
+
*/
|
|
2042
|
+
deviceName?: string | null;
|
|
2043
|
+
}
|
|
2044
|
+
/**
|
|
2045
|
+
* Migrating VM source information about the VM capabilities needed for some Compute Engine features.
|
|
2046
|
+
*/
|
|
2047
|
+
export interface Schema$VmCapabilities {
|
|
2048
|
+
/**
|
|
2049
|
+
* Output only. The last time OS capabilities list was updated.
|
|
2050
|
+
*/
|
|
2051
|
+
lastOsCapabilitiesUpdateTime?: string | null;
|
|
2052
|
+
/**
|
|
2053
|
+
* Output only. Unordered list. List of certain VM OS capabilities needed for some Compute Engine features.
|
|
2054
|
+
*/
|
|
2055
|
+
osCapabilities?: string[] | null;
|
|
2056
|
+
}
|
|
1676
2057
|
/**
|
|
1677
2058
|
* Utilization information of a single VM.
|
|
1678
2059
|
*/
|
|
@@ -1727,6 +2108,23 @@ export declare namespace vmmigration_v1 {
|
|
|
1727
2108
|
*/
|
|
1728
2109
|
networkThroughputMaxKbps?: string | null;
|
|
1729
2110
|
}
|
|
2111
|
+
/**
|
|
2112
|
+
* The details of a Vmware VM disk.
|
|
2113
|
+
*/
|
|
2114
|
+
export interface Schema$VmwareDiskDetails {
|
|
2115
|
+
/**
|
|
2116
|
+
* The ordinal number of the disk.
|
|
2117
|
+
*/
|
|
2118
|
+
diskNumber?: number | null;
|
|
2119
|
+
/**
|
|
2120
|
+
* The disk label.
|
|
2121
|
+
*/
|
|
2122
|
+
label?: string | null;
|
|
2123
|
+
/**
|
|
2124
|
+
* Size in GB.
|
|
2125
|
+
*/
|
|
2126
|
+
sizeGb?: string | null;
|
|
2127
|
+
}
|
|
1730
2128
|
/**
|
|
1731
2129
|
* VmwareSourceDetails message describes a specific source details for the vmware source type.
|
|
1732
2130
|
*/
|
|
@@ -1752,6 +2150,27 @@ export declare namespace vmmigration_v1 {
|
|
|
1752
2150
|
*/
|
|
1753
2151
|
vcenterIp?: string | null;
|
|
1754
2152
|
}
|
|
2153
|
+
/**
|
|
2154
|
+
* Represent the source Vmware VM details.
|
|
2155
|
+
*/
|
|
2156
|
+
export interface Schema$VmwareSourceVmDetails {
|
|
2157
|
+
/**
|
|
2158
|
+
* The total size of the disks being migrated in bytes.
|
|
2159
|
+
*/
|
|
2160
|
+
committedStorageBytes?: string | null;
|
|
2161
|
+
/**
|
|
2162
|
+
* The disks attached to the source VM.
|
|
2163
|
+
*/
|
|
2164
|
+
disks?: Schema$VmwareDiskDetails[];
|
|
2165
|
+
/**
|
|
2166
|
+
* The firmware type of the source VM.
|
|
2167
|
+
*/
|
|
2168
|
+
firmware?: string | null;
|
|
2169
|
+
/**
|
|
2170
|
+
* Output only. Information about VM capabilities needed for some Compute Engine features.
|
|
2171
|
+
*/
|
|
2172
|
+
vmCapabilitiesInfo?: Schema$VmCapabilities;
|
|
2173
|
+
}
|
|
1755
2174
|
/**
|
|
1756
2175
|
* VmwareVmDetails describes a VM in vCenter.
|
|
1757
2176
|
*/
|