Show / Hide Table of Contents

Struct TieringMode

Tiering Mode to control automatic tiering of recovery points. Supported values are:

  1. TierRecommended: Tier all recovery points recommended to be tiered
  2. TierAfter: Tier all recovery points after a fixed period, as specified in duration + durationType below.
  3. DoNotTier: Do not tier any recovery points
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.ResourceManager.RecoveryServicesBackup.dll
Syntax
public struct TieringMode : IEquatable<Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode>

Constructors

TieringMode(String)

Initializes a new instance of TieringMode.

Declaration
public TieringMode (string value);
Parameters
System.String value

Exceptions
System.ArgumentNullException

value is null.

Properties

DoNotTier

DoNotTier.

Declaration
public static Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode DoNotTier { get; }
Property Value
TieringMode

Invalid

Invalid.

Declaration
public static Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode Invalid { get; }
Property Value
TieringMode

TierAfter

TierAfter.

Declaration
public static Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode TierAfter { get; }
Property Value
TieringMode

TierRecommended

TierRecommended.

Declaration
public static Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode TierRecommended { get; }
Property Value
TieringMode

Methods

Equals(TieringMode)

Indicates whether the current object is equal to another object of the same type.

Declaration
public bool Equals (Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode other);
Parameters
TieringMode other

An object to compare with this object.

Returns
System.Boolean

true if the current object is equal to the other parameter; otherwise, false.

Equals(Object)

Indicates whether this instance and a specified object are equal.

Declaration
[System.ComponentModel.EditorBrowsable]
public override bool Equals (object obj);
Parameters
System.Object obj

The object to compare with the current instance.

Returns
System.Boolean

true if obj and this instance are the same type and represent the same value; otherwise, false.

GetHashCode()

Returns the hash code for this instance.

Declaration
[System.ComponentModel.EditorBrowsable]
public override int GetHashCode ();
Returns
System.Int32

A 32-bit signed integer that is the hash code for this instance.

ToString()

Returns the fully qualified type name of this instance.

Declaration
public override string ToString ();
Returns
System.String

The fully qualified type name.

Operators

Equality(TieringMode, TieringMode)

Determines if two TieringMode values are the same.

Declaration
public static bool operator == (Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode left, Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode right);
Parameters
TieringMode left

TieringMode right

Returns
System.Boolean

Implicit(String to TieringMode)

Converts a System.String to a TieringMode.

Declaration
public static implicit operator Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode (string value);
Parameters
System.String value

Returns
TieringMode

Inequality(TieringMode, TieringMode)

Determines if two TieringMode values are not the same.

Declaration
public static bool operator != (Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode left, Azure.ResourceManager.RecoveryServicesBackup.Models.TieringMode right);
Parameters
TieringMode left

TieringMode right

Returns
System.Boolean

Back to top Azure SDK for .NET