Show / Hide Table of Contents

Class OlvmFencingPolicy

Represents a cluster fencing policy.

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

Properties

IsEnabled

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

Enable or disable fencing on this cluster.

IsSkipIfGlusterBricksUp

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

A flag indicating if fencing should be skipped if Gluster bricks are up and running in the host being fenced.

IsSkipIfGlusterQuorumNotMet

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

A flag indicating if fencing should be skipped if Gluster bricks are up and running and Gluster quorum will not be met without those bricks.

SkipIfConnectivityBroken

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

SkipIfSdActive

Declaration
[JsonProperty(PropertyName = "skipIfSdActive")]
public SkipIfSdActive SkipIfSdActive { get; set; }
Property Value
Type Description
SkipIfSdActive
In this article
Back to top