Class: Google::Cloud::VMMigration::V1::MigratingVm
- Inherits:
-
Object
- Object
- Google::Cloud::VMMigration::V1::MigratingVm
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/vmmigration/v1/vmmigration.rb
Overview
MigratingVm describes the VM that will be migrated from a Source environment and its replication state.
Defined Under Namespace
Modules: State Classes: LabelsEntry
Instance Attribute Summary collapse
-
#aws_source_vm_details ⇒ ::Google::Cloud::VMMigration::V1::AwsSourceVmDetails
readonly
Output only.
-
#compute_engine_target_defaults ⇒ ::Google::Cloud::VMMigration::V1::ComputeEngineTargetDefaults
Details of the target VM in Compute Engine.
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#current_sync_info ⇒ ::Google::Cloud::VMMigration::V1::ReplicationCycle
readonly
Output only.
-
#description ⇒ ::String
The description attached to the migrating VM by the user.
-
#display_name ⇒ ::String
The display name attached to the MigratingVm by the user.
-
#error ⇒ ::Google::Rpc::Status
readonly
Output only.
-
#group ⇒ ::String
readonly
Output only.
-
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
The labels of the migrating VM.
-
#last_sync ⇒ ::Google::Cloud::VMMigration::V1::ReplicationSync
readonly
Output only.
-
#name ⇒ ::String
readonly
Output only.
-
#policy ⇒ ::Google::Cloud::VMMigration::V1::SchedulePolicy
The replication schedule policy.
-
#recent_clone_jobs ⇒ ::Array<::Google::Cloud::VMMigration::V1::CloneJob>
readonly
Output only.
-
#recent_cutover_jobs ⇒ ::Array<::Google::Cloud::VMMigration::V1::CutoverJob>
readonly
Output only.
-
#source_vm_id ⇒ ::String
The unique ID of the VM in the source.
-
#state ⇒ ::Google::Cloud::VMMigration::V1::MigratingVm::State
readonly
Output only.
-
#state_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
Instance Attribute Details
#aws_source_vm_details ⇒ ::Google::Cloud::VMMigration::V1::AwsSourceVmDetails (readonly)
Returns Output only. Details of the VM from an AWS source.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#compute_engine_target_defaults ⇒ ::Google::Cloud::VMMigration::V1::ComputeEngineTargetDefaults
Returns Details of the target VM in Compute Engine.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time the migrating VM was created (this refers to this resource and not to the time it was installed in the source).
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#current_sync_info ⇒ ::Google::Cloud::VMMigration::V1::ReplicationCycle (readonly)
Returns Output only. The percentage progress of the current running replication cycle.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#description ⇒ ::String
Returns The description attached to the migrating VM by the user.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#display_name ⇒ ::String
Returns The display name attached to the MigratingVm by the user.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#error ⇒ ::Google::Rpc::Status (readonly)
Returns Output only. Provides details on the state of the Migrating VM in case of an error in replication.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#group ⇒ ::String (readonly)
Returns Output only. The group this migrating vm is included in, if any. The group is represented by the full path of the appropriate Group resource.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns The labels of the migrating VM.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#last_sync ⇒ ::Google::Cloud::VMMigration::V1::ReplicationSync (readonly)
Returns Output only. The most updated snapshot created time in the source that finished replication.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#name ⇒ ::String (readonly)
Returns Output only. The identifier of the MigratingVm.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#policy ⇒ ::Google::Cloud::VMMigration::V1::SchedulePolicy
Returns The replication schedule policy.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#recent_clone_jobs ⇒ ::Array<::Google::Cloud::VMMigration::V1::CloneJob> (readonly)
Returns Output only. The recent clone jobs performed on the migrating VM. This field holds the vm's last completed clone job and the vm's running clone job, if one exists. Note: To have this field populated you need to explicitly request it via the "view" parameter of the Get/List request.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#recent_cutover_jobs ⇒ ::Array<::Google::Cloud::VMMigration::V1::CutoverJob> (readonly)
Returns Output only. The recent cutover jobs performed on the migrating VM. This field holds the vm's last completed cutover job and the vm's running cutover job, if one exists. Note: To have this field populated you need to explicitly request it via the "view" parameter of the Get/List request.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#source_vm_id ⇒ ::String
Returns The unique ID of the VM in the source.
The VM's name in vSphere can be changed, so this is not the VM's name but
rather its moRef id. This id is of the form vm-
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#state ⇒ ::Google::Cloud::VMMigration::V1::MigratingVm::State (readonly)
Returns Output only. State of the MigratingVm.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#state_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The last time the migrating VM state was updated.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The last time the migrating VM resource was updated.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 215 class MigratingVm include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The possible values of the state/health of source VM. module State # The state was not sampled by the health checks yet. STATE_UNSPECIFIED = 0 # The VM in the source is being verified. PENDING = 1 # The source VM was verified, and it's ready to start replication. READY = 2 # Migration is going through the first sync cycle. FIRST_SYNC = 3 # The replication is active, and it's running or scheduled to run. ACTIVE = 4 # The source VM is being turned off, and a final replication is currently # running. CUTTING_OVER = 7 # The source VM was stopped and replicated. The replication is currently # paused. CUTOVER = 8 # A cutover job is active and replication cycle is running the final sync. FINAL_SYNC = 9 # The replication was paused by the user and no cycles are scheduled to # run. PAUSED = 10 # The migrating VM is being finalized and migration resources are being # removed. FINALIZING = 11 # The replication process is done. The migrating VM is finalized and no # longer consumes billable resources. FINALIZED = 12 # The replication process encountered an unrecoverable error and was # aborted. ERROR = 13 end end |