Class CloneJob (1.8.2)

CloneJob(mapping=None, *, ignore_unknown_fields=False, **kwargs)

CloneJob describes the process of creating a clone of a MigratingVM to the requested target based on the latest successful uploaded snapshots. While the migration cycles of a MigratingVm take place, it is possible to verify the uploaded VM can be started in the cloud, by creating a clone. The clone can be created without any downtime, and it is created using the latest snapshots which are already in the cloud. The cloneJob is only responsible for its work, not its products, which means once it is finished, it will never touch the instance it created. It will only delete it in case of the CloneJob being cancelled or upon failure to clone.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Attributes

NameDescription
compute_engine_target_details google.cloud.vmmigration_v1.types.ComputeEngineTargetDetails
Output only. Details of the target VM in Compute Engine. This field is a member of oneof_ target_vm_details.
create_time google.protobuf.timestamp_pb2.Timestamp
Output only. The time the clone job was created (as an API call, not when it was actually created in the target).
end_time google.protobuf.timestamp_pb2.Timestamp
Output only. The time the clone job was ended.
name str
Output only. The name of the clone.
state google.cloud.vmmigration_v1.types.CloneJob.State
Output only. State of the clone job.
state_time google.protobuf.timestamp_pb2.Timestamp
Output only. The time the state was last updated.
error google.rpc.status_pb2.Status
Output only. Provides details for the errors that led to the Clone Job's state.
steps MutableSequence[google.cloud.vmmigration_v1.types.CloneStep]
Output only. The clone steps list representing its progress.

Classes

State

State(value)

Possible states of the clone job.

Values: STATE_UNSPECIFIED (0): The state is unknown. This is used for API compatibility only and is not used by the system. PENDING (1): The clone job has not yet started. ACTIVE (2): The clone job is active and running. FAILED (3): The clone job finished with errors. SUCCEEDED (4): The clone job finished successfully. CANCELLED (5): The clone job was cancelled. CANCELLING (6): The clone job is being cancelled. ADAPTING_OS (7): OS adaptation is running as part of the clone job to generate license.