Class: Google::Cloud::VMMigration::V1::MigratingVm

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

Instance Attribute Summary collapse

Instance Attribute Details

#aws_source_vm_details::Google::Cloud::VMMigration::V1::AwsSourceVmDetails (readonly)

Returns Output only. Details of the VM from an AWS source.

Note: The following fields are mutually exclusive: aws_source_vm_details, vmware_source_vm_details, azure_source_vm_details. If a field in that set is populated, all other fields in the set will automatically be cleared.

Returns:

  • (::Google::Cloud::VMMigration::V1::AwsSourceVmDetails)

    Output only. Details of the VM from an AWS source.

    Note: The following fields are mutually exclusive: aws_source_vm_details, vmware_source_vm_details, azure_source_vm_details. If a field in that set is populated, all other fields in the set will automatically be cleared.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#azure_source_vm_details::Google::Cloud::VMMigration::V1::AzureSourceVmDetails (readonly)

Returns Output only. Details of the VM from an Azure source.

Note: The following fields are mutually exclusive: azure_source_vm_details, vmware_source_vm_details, aws_source_vm_details. If a field in that set is populated, all other fields in the set will automatically be cleared.

Returns:

  • (::Google::Cloud::VMMigration::V1::AzureSourceVmDetails)

    Output only. Details of the VM from an Azure source.

    Note: The following fields are mutually exclusive: azure_source_vm_details, vmware_source_vm_details, aws_source_vm_details. If a field in that set is populated, all other fields in the set will automatically be cleared.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#compute_engine_disks_target_defaults::Google::Cloud::VMMigration::V1::ComputeEngineDisksTargetDefaults

Returns Details of the target Persistent Disks in Compute Engine.

Note: The following fields are mutually exclusive: compute_engine_disks_target_defaults, compute_engine_target_defaults. If a field in that set is populated, all other fields in the set will automatically be cleared.

Returns:

  • (::Google::Cloud::VMMigration::V1::ComputeEngineDisksTargetDefaults)

    Details of the target Persistent Disks in Compute Engine.

    Note: The following fields are mutually exclusive: compute_engine_disks_target_defaults, compute_engine_target_defaults. If a field in that set is populated, all other fields in the set will automatically be cleared.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#compute_engine_target_defaults::Google::Cloud::VMMigration::V1::ComputeEngineTargetDefaults

Returns Details of the target VM in Compute Engine.

Note: The following fields are mutually exclusive: compute_engine_target_defaults, compute_engine_disks_target_defaults. If a field in that set is populated, all other fields in the set will automatically be cleared.

Returns:

  • (::Google::Cloud::VMMigration::V1::ComputeEngineTargetDefaults)

    Details of the target VM in Compute Engine.

    Note: The following fields are mutually exclusive: compute_engine_target_defaults, compute_engine_disks_target_defaults. If a field in that set is populated, all other fields in the set will automatically be cleared.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  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).

Returns:

  • (::Google::Protobuf::Timestamp)

    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).



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#current_sync_info::Google::Cloud::VMMigration::V1::ReplicationCycle (readonly)

Returns Output only. Details of the current running replication cycle.

Returns:



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#cutover_forecast::Google::Cloud::VMMigration::V1::CutoverForecast (readonly)

Returns Output only. Provides details of future CutoverJobs of a MigratingVm. Set to empty when cutover forecast is unavailable.

Returns:



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#description::String

Returns The description attached to the migrating VM by the user.

Returns:

  • (::String)

    The description attached to the migrating VM by the user.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#display_name::String

Returns The display name attached to the MigratingVm by the user.

Returns:

  • (::String)

    The display name attached to the MigratingVm by the user.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  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.

Returns:

  • (::Google::Rpc::Status)

    Output only. Provides details on the state of the Migrating VM in case of an error in replication.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#expiration::Google::Cloud::VMMigration::V1::MigratingVm::Expiration (readonly)

Returns Output only. Provides details about the expiration state of the migrating VM.

Returns:



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  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.

Returns:

  • (::String)

    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.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#labels::Google::Protobuf::Map{::String => ::String}

Returns The labels of the migrating VM.

Returns:

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

    The labels of the migrating VM.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#last_replication_cycle::Google::Cloud::VMMigration::V1::ReplicationCycle (readonly)

Returns Output only. Details of the last replication cycle. This will be updated whenever a replication cycle is finished and is not to be confused with last_sync which is only updated on successful replication cycles.

Returns:

  • (::Google::Cloud::VMMigration::V1::ReplicationCycle)

    Output only. Details of the last replication cycle. This will be updated whenever a replication cycle is finished and is not to be confused with last_sync which is only updated on successful replication cycles.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  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.

Returns:



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#name::String (readonly)

Returns Output only. The identifier of the MigratingVm.

Returns:

  • (::String)

    Output only. The identifier of the MigratingVm.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#policy::Google::Cloud::VMMigration::V1::SchedulePolicy

Returns The replication schedule policy.

Returns:



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  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.

Returns:

  • (::Array<::Google::Cloud::VMMigration::V1::CloneJob>)

    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.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  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.

Returns:

  • (::Array<::Google::Cloud::VMMigration::V1::CutoverJob>)

    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.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  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-.

Returns:

  • (::String)

    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-.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#state::Google::Cloud::VMMigration::V1::MigratingVm::State (readonly)

Returns Output only. State of the MigratingVm.

Returns:



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#state_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The last time the migrating VM state was updated.

Returns:



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The last time the migrating VM resource was updated.

Returns:



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end

#vmware_source_vm_details::Google::Cloud::VMMigration::V1::VmwareSourceVmDetails (readonly)

Returns Output only. Details of the VM from a Vmware source.

Note: The following fields are mutually exclusive: vmware_source_vm_details, aws_source_vm_details, azure_source_vm_details. If a field in that set is populated, all other fields in the set will automatically be cleared.

Returns:

  • (::Google::Cloud::VMMigration::V1::VmwareSourceVmDetails)

    Output only. Details of the VM from a Vmware source.

    Note: The following fields are mutually exclusive: vmware_source_vm_details, aws_source_vm_details, azure_source_vm_details. If a field in that set is populated, all other fields in the set will automatically be cleared.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'proto_docs/google/cloud/vmmigration/v1/vmmigration.rb', line 256

class MigratingVm
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Expiration holds information about the expiration of a MigratingVm.
  # @!attribute [r] expire_time
  #   @return [::Google::Protobuf::Timestamp]
  #     Output only. Timestamp of when this resource is considered expired.
  # @!attribute [r] extension_count
  #   @return [::Integer]
  #     Output only. The number of times expiration was extended.
  # @!attribute [r] extendable
  #   @return [::Boolean]
  #     Output only. Describes whether the expiration can be extended.
  class Expiration
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!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

    # The migrating VM has passed its expiration date. It might be possible to
    # bring it back to "Active" state by updating the TTL field. For more
    # information, see the documentation.
    EXPIRED = 14

    # The migrating VM's has been finalized and migration resources have been
    # removed.
    FINALIZED_EXPIRED = 17
  end
end