Show / Hide Table of Contents

Class OlvmMigrationOptions

Reference to cluster-wide configuration of migration of a running virtual machine to another host.

Inheritance
object
OlvmMigrationOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudmigrationsService.Models
Assembly: OCI.DotNetSDK.Cloudmigrations.dll
Syntax
public class OlvmMigrationOptions

Properties

AutoConverge

Declaration
[JsonProperty(PropertyName = "autoConverge")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmMigrationOptions.AutoConvergeEnum? AutoConverge { get; set; }
Property Value
Type Description
OlvmMigrationOptions.AutoConvergeEnum?

Enum representing the boolean value that can be either set, or inherited from a higher level. The inheritance order is virtual machine ??? cluster ??? engine-config.

Bandwidth

Declaration
[JsonProperty(PropertyName = "bandwidth")]
public MigrationBandwidth Bandwidth { get; set; }
Property Value
Type Description
MigrationBandwidth

Compressed

Declaration
[JsonProperty(PropertyName = "compressed")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmMigrationOptions.CompressedEnum? Compressed { get; set; }
Property Value
Type Description
OlvmMigrationOptions.CompressedEnum?

Enum representing the boolean value that can be either set, or inherited from a higher level. The inheritance order is virtual machine ??? cluster ??? engine-config.

CustomParallelMigrations

Declaration
[JsonProperty(PropertyName = "customParallelMigrations")]
public int? CustomParallelMigrations { get; set; }
Property Value
Type Description
int?

Specifies how many parallel migration connections to use.

Encrypted

Declaration
[JsonProperty(PropertyName = "encrypted")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmMigrationOptions.EncryptedEnum? Encrypted { get; set; }
Property Value
Type Description
OlvmMigrationOptions.EncryptedEnum?

Enum representing the boolean value that can be either set, or inherited from a higher level. The inheritance order is virtual machine ??? cluster ??? engine-config.

ParallelMigrationsPolicy

Declaration
[JsonProperty(PropertyName = "parallelMigrationsPolicy")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmMigrationOptions.ParallelMigrationsPolicyEnum? ParallelMigrationsPolicy { get; set; }
Property Value
Type Description
OlvmMigrationOptions.ParallelMigrationsPolicyEnum?

Type representing parallel migration connections policy.

In this article
Back to top