Class: Google::Cloud::VMMigration::V1::AwsVmDetails

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#architecture::Google::Cloud::VMMigration::V1::AwsVmDetails::VmArchitecture

Returns The CPU architecture.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::Integer)

    The total size of the storage allocated to the VM in MB.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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 cpus the VM has.

Returns:

  • (::Integer)

    The number of cpus the VM has.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::Integer)

    The number of disks the VM has.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::String)

    The display name of the VM. Note that this value is not necessarily unique.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::String)

    The instance type of the VM.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::Integer)

    The memory size of the VM in MB.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::String)

    The VM's OS.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::String)

    The descriptive name of the AWS's source this VM is connected to.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::String)

    The id of the AWS's source this VM is connected to.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::Google::Protobuf::Map{::String => ::String})

    The tags of the VM.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::String)

    The VM ID in AWS.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::String)

    The VPC ID the VM belongs to.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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.

Returns:

  • (::String)

    The AWS zone of the VM.



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 1160

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