Class: Google::Apis::VmmigrationV1::CloneJob
- Inherits:
-
Object
- Object
- Google::Apis::VmmigrationV1::CloneJob
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmmigration_v1/classes.rb,
lib/google/apis/vmmigration_v1/representations.rb,
lib/google/apis/vmmigration_v1/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#compute_engine_disks_target_details ⇒ Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDetails
ComputeEngineDisksTargetDetails is a collection of created Persistent Disks details.
-
#compute_engine_target_details ⇒ Google::Apis::VmmigrationV1::ComputeEngineTargetDetails
ComputeEngineTargetDetails is a collection of details for creating a VM in a target Compute Engine project.
-
#create_time ⇒ String
Output only.
-
#end_time ⇒ String
Output only.
-
#error ⇒ Google::Apis::VmmigrationV1::Status
The
Status
type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. -
#name ⇒ String
Output only.
-
#state ⇒ String
Output only.
-
#state_time ⇒ String
Output only.
-
#steps ⇒ Array<Google::Apis::VmmigrationV1::CloneStep>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloneJob
constructor
A new instance of CloneJob.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloneJob
Returns a new instance of CloneJob.
941 942 943 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 941 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compute_engine_disks_target_details ⇒ Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDetails
ComputeEngineDisksTargetDetails is a collection of created Persistent Disks
details.
Corresponds to the JSON property computeEngineDisksTargetDetails
892 893 894 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 892 def compute_engine_disks_target_details @compute_engine_disks_target_details end |
#compute_engine_target_details ⇒ Google::Apis::VmmigrationV1::ComputeEngineTargetDetails
ComputeEngineTargetDetails is a collection of details for creating a VM in a
target Compute Engine project.
Corresponds to the JSON property computeEngineTargetDetails
898 899 900 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 898 def compute_engine_target_details @compute_engine_target_details end |
#create_time ⇒ String
Output only. The time the clone job was created (as an API call, not when it
was actually created in the target).
Corresponds to the JSON property createTime
904 905 906 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 904 def create_time @create_time end |
#end_time ⇒ String
Output only. The time the clone job was ended.
Corresponds to the JSON property endTime
909 910 911 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 909 def end_time @end_time end |
#error ⇒ Google::Apis::VmmigrationV1::Status
The Status
type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by
gRPC. Each Status
message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property error
919 920 921 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 919 def error @error end |
#name ⇒ String
Output only. The name of the clone.
Corresponds to the JSON property name
924 925 926 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 924 def name @name end |
#state ⇒ String
Output only. State of the clone job.
Corresponds to the JSON property state
929 930 931 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 929 def state @state end |
#state_time ⇒ String
Output only. The time the state was last updated.
Corresponds to the JSON property stateTime
934 935 936 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 934 def state_time @state_time end |
#steps ⇒ Array<Google::Apis::VmmigrationV1::CloneStep>
Output only. The clone steps list representing its progress.
Corresponds to the JSON property steps
939 940 941 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 939 def steps @steps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
946 947 948 949 950 951 952 953 954 955 956 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 946 def update!(**args) @compute_engine_disks_target_details = args[:compute_engine_disks_target_details] if args.key?(:compute_engine_disks_target_details) @compute_engine_target_details = args[:compute_engine_target_details] if args.key?(:compute_engine_target_details) @create_time = args[:create_time] if args.key?(:create_time) @end_time = args[:end_time] if args.key?(:end_time) @error = args[:error] if args.key?(:error) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @state_time = args[:state_time] if args.key?(:state_time) @steps = args[:steps] if args.key?(:steps) end |