@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/build/v1alpha1.d.ts
CHANGED
|
@@ -234,6 +234,10 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
234
234
|
* The firmware type of the source VM.
|
|
235
235
|
*/
|
|
236
236
|
firmware?: string | null;
|
|
237
|
+
/**
|
|
238
|
+
* Output only. Information about VM capabilities needed for some Compute Engine features.
|
|
239
|
+
*/
|
|
240
|
+
vmCapabilitiesInfo?: Schema$VmCapabilities;
|
|
237
241
|
}
|
|
238
242
|
/**
|
|
239
243
|
* AwsVmDetails describes a VM in AWS.
|
|
@@ -323,6 +327,168 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
323
327
|
*/
|
|
324
328
|
details?: Schema$AwsVmDetails[];
|
|
325
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
|
+
}
|
|
326
492
|
/**
|
|
327
493
|
* Request message for 'CancelCloneJob' request.
|
|
328
494
|
*/
|
|
@@ -338,6 +504,23 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
338
504
|
*/
|
|
339
505
|
export interface Schema$CancelOperationRequest {
|
|
340
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
|
+
}
|
|
341
524
|
/**
|
|
342
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.
|
|
343
526
|
*/
|
|
@@ -420,10 +603,18 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
420
603
|
* The details of each Persistent Disk to create.
|
|
421
604
|
*/
|
|
422
605
|
disks?: Schema$PersistentDiskDefaults[];
|
|
606
|
+
/**
|
|
607
|
+
* Details of the disk only migration target.
|
|
608
|
+
*/
|
|
609
|
+
disksTargetDefaults?: Schema$DisksMigrationDisksTargetDefaults;
|
|
423
610
|
/**
|
|
424
611
|
* The full path of the resource of type TargetProject which represents the Compute Engine project in which to create the Persistent Disks.
|
|
425
612
|
*/
|
|
426
613
|
targetProject?: string | null;
|
|
614
|
+
/**
|
|
615
|
+
* Details of the VM migration target.
|
|
616
|
+
*/
|
|
617
|
+
vmTargetDefaults?: Schema$DisksMigrationVmTargetDefaults;
|
|
427
618
|
/**
|
|
428
619
|
* The zone in which to create the Persistent Disks.
|
|
429
620
|
*/
|
|
@@ -437,6 +628,14 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
437
628
|
* The details of each created Persistent Disk.
|
|
438
629
|
*/
|
|
439
630
|
disks?: Schema$PersistentDisk[];
|
|
631
|
+
/**
|
|
632
|
+
* Details of the disks-only migration target.
|
|
633
|
+
*/
|
|
634
|
+
disksTargetDetails?: Schema$DisksMigrationDisksTargetDetails;
|
|
635
|
+
/**
|
|
636
|
+
* Details for the VM the migrated data disks are attached to.
|
|
637
|
+
*/
|
|
638
|
+
vmTargetDetails?: Schema$DisksMigrationVmTargetDetails;
|
|
440
639
|
}
|
|
441
640
|
/**
|
|
442
641
|
* ComputeEngineTargetDefaults is a collection of details for creating a VM in a target Compute Engine project.
|
|
@@ -811,6 +1010,112 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
811
1010
|
*/
|
|
812
1011
|
version?: string | null;
|
|
813
1012
|
}
|
|
1013
|
+
/**
|
|
1014
|
+
* A message describing a data disk.
|
|
1015
|
+
*/
|
|
1016
|
+
export interface Schema$Disk {
|
|
1017
|
+
/**
|
|
1018
|
+
* The disk's Logical Unit Number (LUN).
|
|
1019
|
+
*/
|
|
1020
|
+
lun?: number | null;
|
|
1021
|
+
/**
|
|
1022
|
+
* The disk name.
|
|
1023
|
+
*/
|
|
1024
|
+
name?: string | null;
|
|
1025
|
+
/**
|
|
1026
|
+
* The disk size in GB.
|
|
1027
|
+
*/
|
|
1028
|
+
sizeGb?: number | null;
|
|
1029
|
+
}
|
|
1030
|
+
/**
|
|
1031
|
+
* Contains details about the image source used to create the disk.
|
|
1032
|
+
*/
|
|
1033
|
+
export interface Schema$DiskImageDefaults {
|
|
1034
|
+
/**
|
|
1035
|
+
* Required. The Image resource used when creating the disk.
|
|
1036
|
+
*/
|
|
1037
|
+
sourceImage?: string | null;
|
|
1038
|
+
}
|
|
1039
|
+
/**
|
|
1040
|
+
* Details for a disk only migration.
|
|
1041
|
+
*/
|
|
1042
|
+
export interface Schema$DisksMigrationDisksTargetDefaults {
|
|
1043
|
+
}
|
|
1044
|
+
/**
|
|
1045
|
+
* Details for a disks-only migration.
|
|
1046
|
+
*/
|
|
1047
|
+
export interface Schema$DisksMigrationDisksTargetDetails {
|
|
1048
|
+
}
|
|
1049
|
+
/**
|
|
1050
|
+
* Details for creation of a VM that migrated data disks will be attached to.
|
|
1051
|
+
*/
|
|
1052
|
+
export interface Schema$DisksMigrationVmTargetDefaults {
|
|
1053
|
+
/**
|
|
1054
|
+
* Optional. Additional licenses to assign to the VM.
|
|
1055
|
+
*/
|
|
1056
|
+
additionalLicenses?: string[] | null;
|
|
1057
|
+
/**
|
|
1058
|
+
* Optional. Details of the boot disk of the VM.
|
|
1059
|
+
*/
|
|
1060
|
+
bootDiskDefaults?: Schema$BootDiskDefaults;
|
|
1061
|
+
/**
|
|
1062
|
+
* Optional. Compute instance scheduling information (if empty default is used).
|
|
1063
|
+
*/
|
|
1064
|
+
computeScheduling?: Schema$ComputeScheduling;
|
|
1065
|
+
/**
|
|
1066
|
+
* Optional. The hostname to assign to the VM.
|
|
1067
|
+
*/
|
|
1068
|
+
hostname?: string | null;
|
|
1069
|
+
/**
|
|
1070
|
+
* Optional. A map of labels to associate with the VM.
|
|
1071
|
+
*/
|
|
1072
|
+
labels?: {
|
|
1073
|
+
[key: string]: string;
|
|
1074
|
+
} | null;
|
|
1075
|
+
/**
|
|
1076
|
+
* Required. The machine type to create the VM with.
|
|
1077
|
+
*/
|
|
1078
|
+
machineType?: string | null;
|
|
1079
|
+
/**
|
|
1080
|
+
* Optional. The machine type series to create the VM with. For presentation only.
|
|
1081
|
+
*/
|
|
1082
|
+
machineTypeSeries?: string | null;
|
|
1083
|
+
/**
|
|
1084
|
+
* Optional. The metadata key/value pairs to assign to the VM.
|
|
1085
|
+
*/
|
|
1086
|
+
metadata?: {
|
|
1087
|
+
[key: string]: string;
|
|
1088
|
+
} | null;
|
|
1089
|
+
/**
|
|
1090
|
+
* Optional. NICs to attach to the VM.
|
|
1091
|
+
*/
|
|
1092
|
+
networkInterfaces?: Schema$NetworkInterface[];
|
|
1093
|
+
/**
|
|
1094
|
+
* Optional. A list of network tags to associate with the VM.
|
|
1095
|
+
*/
|
|
1096
|
+
networkTags?: string[] | null;
|
|
1097
|
+
/**
|
|
1098
|
+
* Optional. Defines whether the instance has Secure Boot enabled. This can be set to true only if the VM boot option is EFI.
|
|
1099
|
+
*/
|
|
1100
|
+
secureBoot?: boolean | null;
|
|
1101
|
+
/**
|
|
1102
|
+
* Optional. The service account to associate the VM with.
|
|
1103
|
+
*/
|
|
1104
|
+
serviceAccount?: string | null;
|
|
1105
|
+
/**
|
|
1106
|
+
* Required. The name of the VM to create.
|
|
1107
|
+
*/
|
|
1108
|
+
vmName?: string | null;
|
|
1109
|
+
}
|
|
1110
|
+
/**
|
|
1111
|
+
* Details for the VM created VM as part of disks migration.
|
|
1112
|
+
*/
|
|
1113
|
+
export interface Schema$DisksMigrationVmTargetDetails {
|
|
1114
|
+
/**
|
|
1115
|
+
* Output only. The URI of the Compute Engine VM.
|
|
1116
|
+
*/
|
|
1117
|
+
vmUri?: string | null;
|
|
1118
|
+
}
|
|
814
1119
|
/**
|
|
815
1120
|
* 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); \}
|
|
816
1121
|
*/
|
|
@@ -824,6 +1129,10 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
824
1129
|
* The description of the VMs in a Source of type AWS.
|
|
825
1130
|
*/
|
|
826
1131
|
awsVms?: Schema$AwsVmsDetails;
|
|
1132
|
+
/**
|
|
1133
|
+
* The description of the VMs in a Source of type Azure.
|
|
1134
|
+
*/
|
|
1135
|
+
azureVms?: Schema$AzureVmsDetails;
|
|
827
1136
|
/**
|
|
828
1137
|
* 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.
|
|
829
1138
|
*/
|
|
@@ -1123,6 +1432,10 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1123
1432
|
* Output only. Details of the VM from an AWS source.
|
|
1124
1433
|
*/
|
|
1125
1434
|
awsSourceVmDetails?: Schema$AwsSourceVmDetails;
|
|
1435
|
+
/**
|
|
1436
|
+
* Output only. Details of the VM from an Azure source.
|
|
1437
|
+
*/
|
|
1438
|
+
azureSourceVmDetails?: Schema$AzureSourceVmDetails;
|
|
1126
1439
|
/**
|
|
1127
1440
|
* Details of the target Persistent Disks in Compute Engine.
|
|
1128
1441
|
*/
|
|
@@ -1213,6 +1526,10 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1213
1526
|
* Output only. The last time the migrating VM resource was updated.
|
|
1214
1527
|
*/
|
|
1215
1528
|
updateTime?: string | null;
|
|
1529
|
+
/**
|
|
1530
|
+
* Output only. Details of the VM from a Vmware source.
|
|
1531
|
+
*/
|
|
1532
|
+
vmwareSourceVmDetails?: Schema$VmwareSourceVmDetails;
|
|
1216
1533
|
}
|
|
1217
1534
|
/**
|
|
1218
1535
|
* 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.
|
|
@@ -1347,6 +1664,44 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1347
1664
|
*/
|
|
1348
1665
|
verb?: string | null;
|
|
1349
1666
|
}
|
|
1667
|
+
/**
|
|
1668
|
+
* A message describing the VM's OS. Including OS, Publisher, Offer and Plan if applicable.
|
|
1669
|
+
*/
|
|
1670
|
+
export interface Schema$OSDescription {
|
|
1671
|
+
/**
|
|
1672
|
+
* OS offer.
|
|
1673
|
+
*/
|
|
1674
|
+
offer?: string | null;
|
|
1675
|
+
/**
|
|
1676
|
+
* OS plan.
|
|
1677
|
+
*/
|
|
1678
|
+
plan?: string | null;
|
|
1679
|
+
/**
|
|
1680
|
+
* OS publisher.
|
|
1681
|
+
*/
|
|
1682
|
+
publisher?: string | null;
|
|
1683
|
+
/**
|
|
1684
|
+
* OS type.
|
|
1685
|
+
*/
|
|
1686
|
+
type?: string | null;
|
|
1687
|
+
}
|
|
1688
|
+
/**
|
|
1689
|
+
* A message describing the OS disk.
|
|
1690
|
+
*/
|
|
1691
|
+
export interface Schema$OSDisk {
|
|
1692
|
+
/**
|
|
1693
|
+
* The disk's full name.
|
|
1694
|
+
*/
|
|
1695
|
+
name?: string | null;
|
|
1696
|
+
/**
|
|
1697
|
+
* The disk's size in GB.
|
|
1698
|
+
*/
|
|
1699
|
+
sizeGb?: number | null;
|
|
1700
|
+
/**
|
|
1701
|
+
* The disk's type.
|
|
1702
|
+
*/
|
|
1703
|
+
type?: string | null;
|
|
1704
|
+
}
|
|
1350
1705
|
/**
|
|
1351
1706
|
* Request message for 'PauseMigration' request.
|
|
1352
1707
|
*/
|
|
@@ -1387,6 +1742,10 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1387
1742
|
* Required. The ordinal number of the source VM disk.
|
|
1388
1743
|
*/
|
|
1389
1744
|
sourceDiskNumber?: number | null;
|
|
1745
|
+
/**
|
|
1746
|
+
* Optional. Details for attachment of the disk to a VM. Used when the disk is set to be attacked to a target VM.
|
|
1747
|
+
*/
|
|
1748
|
+
vmAttachmentDetails?: Schema$VmAttachmentDetails;
|
|
1390
1749
|
}
|
|
1391
1750
|
/**
|
|
1392
1751
|
* PostProcessingStep contains specific step details.
|
|
@@ -1534,6 +1893,10 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1534
1893
|
* AWS type source details.
|
|
1535
1894
|
*/
|
|
1536
1895
|
aws?: Schema$AwsSourceDetails;
|
|
1896
|
+
/**
|
|
1897
|
+
* Azure type source details.
|
|
1898
|
+
*/
|
|
1899
|
+
azure?: Schema$AzureSourceDetails;
|
|
1537
1900
|
/**
|
|
1538
1901
|
* Output only. The create time timestamp.
|
|
1539
1902
|
*/
|
|
@@ -1803,6 +2166,28 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1803
2166
|
*/
|
|
1804
2167
|
vmsCount?: number | null;
|
|
1805
2168
|
}
|
|
2169
|
+
/**
|
|
2170
|
+
* Details for attachment of the disk to a VM.
|
|
2171
|
+
*/
|
|
2172
|
+
export interface Schema$VmAttachmentDetails {
|
|
2173
|
+
/**
|
|
2174
|
+
* 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.
|
|
2175
|
+
*/
|
|
2176
|
+
deviceName?: string | null;
|
|
2177
|
+
}
|
|
2178
|
+
/**
|
|
2179
|
+
* Migrating VM source information about the VM capabilities needed for some Compute Engine features.
|
|
2180
|
+
*/
|
|
2181
|
+
export interface Schema$VmCapabilities {
|
|
2182
|
+
/**
|
|
2183
|
+
* Output only. The last time OS capabilities list was updated.
|
|
2184
|
+
*/
|
|
2185
|
+
lastOsCapabilitiesUpdateTime?: string | null;
|
|
2186
|
+
/**
|
|
2187
|
+
* Output only. Unordered list. List of certain VM OS capabilities needed for some Compute Engine features.
|
|
2188
|
+
*/
|
|
2189
|
+
osCapabilities?: string[] | null;
|
|
2190
|
+
}
|
|
1806
2191
|
/**
|
|
1807
2192
|
* Utilization information of a single VM.
|
|
1808
2193
|
*/
|
|
@@ -1889,6 +2274,23 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1889
2274
|
*/
|
|
1890
2275
|
networkThroughputMaxKbps?: string | null;
|
|
1891
2276
|
}
|
|
2277
|
+
/**
|
|
2278
|
+
* The details of a Vmware VM disk.
|
|
2279
|
+
*/
|
|
2280
|
+
export interface Schema$VmwareDiskDetails {
|
|
2281
|
+
/**
|
|
2282
|
+
* The ordinal number of the disk.
|
|
2283
|
+
*/
|
|
2284
|
+
diskNumber?: number | null;
|
|
2285
|
+
/**
|
|
2286
|
+
* The disk label.
|
|
2287
|
+
*/
|
|
2288
|
+
label?: string | null;
|
|
2289
|
+
/**
|
|
2290
|
+
* Size in GB.
|
|
2291
|
+
*/
|
|
2292
|
+
sizeGb?: string | null;
|
|
2293
|
+
}
|
|
1892
2294
|
/**
|
|
1893
2295
|
* VmwareSourceDetails message describes a specific source details for the vmware source type.
|
|
1894
2296
|
*/
|
|
@@ -1914,6 +2316,27 @@ export declare namespace vmmigration_v1alpha1 {
|
|
|
1914
2316
|
*/
|
|
1915
2317
|
vcenterIp?: string | null;
|
|
1916
2318
|
}
|
|
2319
|
+
/**
|
|
2320
|
+
* Represent the source Vmware VM details.
|
|
2321
|
+
*/
|
|
2322
|
+
export interface Schema$VmwareSourceVmDetails {
|
|
2323
|
+
/**
|
|
2324
|
+
* The total size of the disks being migrated in bytes.
|
|
2325
|
+
*/
|
|
2326
|
+
committedStorageBytes?: string | null;
|
|
2327
|
+
/**
|
|
2328
|
+
* The disks attached to the source VM.
|
|
2329
|
+
*/
|
|
2330
|
+
disks?: Schema$VmwareDiskDetails[];
|
|
2331
|
+
/**
|
|
2332
|
+
* The firmware type of the source VM.
|
|
2333
|
+
*/
|
|
2334
|
+
firmware?: string | null;
|
|
2335
|
+
/**
|
|
2336
|
+
* Output only. Information about VM capabilities needed for some Compute Engine features.
|
|
2337
|
+
*/
|
|
2338
|
+
vmCapabilitiesInfo?: Schema$VmCapabilities;
|
|
2339
|
+
}
|
|
1917
2340
|
/**
|
|
1918
2341
|
* VmwareVmDetails describes a VM in vCenter.
|
|
1919
2342
|
*/
|