Class: Google::Cloud::VMMigration::V1::AwsVmDetails
- Inherits:
-
Object
- Object
- Google::Cloud::VMMigration::V1::AwsVmDetails
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/vmmigration/v1/vmmigration.rb
Overview
AwsVmDetails describes a VM in AWS.
Defined Under Namespace
Modules: BootOption, PowerState, VmArchitecture, VmVirtualizationType Classes: TagsEntry
Instance Attribute Summary collapse
-
#architecture ⇒ ::Google::Cloud::VMMigration::V1::AwsVmDetails::VmArchitecture
The CPU architecture.
-
#boot_option ⇒ ::Google::Cloud::VMMigration::V1::AwsVmDetails::BootOption
The VM Boot Option.
-
#committed_storage_mb ⇒ ::Integer
The total size of the storage allocated to the VM in MB.
-
#cpu_count ⇒ ::Integer
The number of CPU cores the VM has.
-
#disk_count ⇒ ::Integer
The number of disks the VM has.
-
#display_name ⇒ ::String
The display name of the VM.
-
#instance_type ⇒ ::String
The instance type of the VM.
-
#memory_mb ⇒ ::Integer
The memory size of the VM in MB.
-
#os_description ⇒ ::String
The VM's OS.
-
#power_state ⇒ ::Google::Cloud::VMMigration::V1::AwsVmDetails::PowerState
readonly
Output only.
-
#security_groups ⇒ ::Array<::Google::Cloud::VMMigration::V1::AwsSecurityGroup>
The security groups the VM belongs to.
-
#source_description ⇒ ::String
The descriptive name of the AWS's source this VM is connected to.
-
#source_id ⇒ ::String
The id of the AWS's source this VM is connected to.
-
#tags ⇒ ::Google::Protobuf::Map{::String => ::String}
The tags of the VM.
-
#vcpu_count ⇒ ::Integer
The number of vCPUs the VM has.
-
#virtualization_type ⇒ ::Google::Cloud::VMMigration::V1::AwsVmDetails::VmVirtualizationType
The virtualization type.
-
#vm_id ⇒ ::String
The VM ID in AWS.
-
#vpc_id ⇒ ::String
The VPC ID the VM belongs to.
-
#zone ⇒ ::String
The AWS zone of the VM.
Instance Attribute Details
#architecture ⇒ ::Google::Cloud::VMMigration::V1::AwsVmDetails::VmArchitecture
Returns The CPU architecture.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#boot_option ⇒ ::Google::Cloud::VMMigration::V1::AwsVmDetails::BootOption
Returns The VM Boot Option.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#committed_storage_mb ⇒ ::Integer
Returns The total size of the storage allocated to the VM in MB.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#cpu_count ⇒ ::Integer
Returns The number of CPU cores the VM has.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#disk_count ⇒ ::Integer
Returns The number of disks the VM has.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#display_name ⇒ ::String
Returns The display name of the VM. Note that this value is not necessarily unique.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#instance_type ⇒ ::String
Returns The instance type of the VM.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#memory_mb ⇒ ::Integer
Returns The memory size of the VM in MB.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#os_description ⇒ ::String
Returns The VM's OS.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#power_state ⇒ ::Google::Cloud::VMMigration::V1::AwsVmDetails::PowerState (readonly)
Returns Output only. The power state of the VM at the moment list was taken.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#security_groups ⇒ ::Array<::Google::Cloud::VMMigration::V1::AwsSecurityGroup>
Returns The security groups the VM belongs to.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#source_description ⇒ ::String
Returns The descriptive name of the AWS's source this VM is connected to.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#source_id ⇒ ::String
Returns The id of the AWS's source this VM is connected to.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#tags ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns The tags of the VM.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#vcpu_count ⇒ ::Integer
Returns The number of vCPUs the VM has. It is calculated as the number of CPU cores * threads per CPU the VM has.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#virtualization_type ⇒ ::Google::Cloud::VMMigration::V1::AwsVmDetails::VmVirtualizationType
Returns The virtualization type.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#vm_id ⇒ ::String
Returns The VM ID in AWS.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#vpc_id ⇒ ::String
Returns The VPC ID the VM belongs to.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |
#zone ⇒ ::String
Returns The AWS zone of the VM.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1391 class AwsVmDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class TagsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible values for the power state of the VM. module PowerState # Power state is not specified. POWER_STATE_UNSPECIFIED = 0 # The VM is turned on. ON = 1 # The VM is turned off. OFF = 2 # The VM is suspended. This is similar to hibernation or sleep # mode. SUSPENDED = 3 # The VM is starting. PENDING = 4 end # The possible values for the vm boot option. module BootOption # The boot option is unknown. BOOT_OPTION_UNSPECIFIED = 0 # The boot option is UEFI. EFI = 1 # The boot option is LEGACY-BIOS. BIOS = 2 end # Possible values for the virtualization types of the VM. module VmVirtualizationType # The virtualization type is unknown. VM_VIRTUALIZATION_TYPE_UNSPECIFIED = 0 # The virtualziation type is HVM. HVM = 1 # The virtualziation type is PARAVIRTUAL. PARAVIRTUAL = 2 end # Possible values for the architectures of the VM. module VmArchitecture # The architecture is unknown. VM_ARCHITECTURE_UNSPECIFIED = 0 # The architecture is I386. I386 = 1 # The architecture is X86_64. X86_64 = 2 # The architecture is ARM64. ARM64 = 3 # The architecture is X86_64_MAC. X86_64_MAC = 4 end end |