Show / Hide Table of Contents

Class OlvmVmSummary

Type containing information related to virtual machines on a particular host.

Inheritance
object
OlvmVmSummary
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 OlvmVmSummary

Properties

Active

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

The number of virtual machines active on the host.

Migrating

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

The number of virtual machines migrating to or from the host.

Total

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

The number of virtual machines present on the host.

In this article
Back to top