Show / Hide Table of Contents

Class OlvmPowerManagement

OLVM Power management definitions

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

Properties

Address

Declaration
[JsonProperty(PropertyName = "address")]
public string Address { get; set; }
Property Value
Type Description
string

Address of power management

Agents

Declaration
[JsonProperty(PropertyName = "agents")]
public List<OlvmAgent> Agents { get; set; }
Property Value
Type Description
List<OlvmAgent>

Supported sources of random number generator.

IsAutomaticPmEnabled

Declaration
[JsonProperty(PropertyName = "isAutomaticPmEnabled")]
public bool? IsAutomaticPmEnabled { get; set; }
Property Value
Type Description
bool?

Toggles the automated power control of the host in order to save energy.

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Indicates whether power management configuration is enabled or disabled.

IsKDumpDetection

Declaration
[JsonProperty(PropertyName = "isKDumpDetection")]
public bool? IsKDumpDetection { get; set; }
Property Value
Type Description
bool?

Toggles whether to determine if kdump is running on the host before it is shut down.

PmProxies

Declaration
[JsonProperty(PropertyName = "pmProxies")]
public List<OlvmPmProxy> PmProxies { get; set; }
Property Value
Type Description
List<OlvmPmProxy>

Determines the power management proxy.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmPowerManagement.StatusEnum? Status { get; set; }
Property Value
Type Description
OlvmPowerManagement.StatusEnum?

Determines the power status of the host.

Type

Declaration
[JsonProperty(PropertyName = "type")]
public string Type { get; set; }
Property Value
Type Description
string

Fencing device code.

Username

Declaration
[JsonProperty(PropertyName = "username")]
public string Username { get; set; }
Property Value
Type Description
string

A valid user name for power management.

In this article
Back to top