NodeStatusFilter Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the filters used for matching the node status for nodes that should be returned by query.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum NodeStatusFilter
[<System.Flags>]
type NodeStatusFilter =
Public Enum NodeStatusFilter
- Inheritance
-
NodeStatusFilter
- Attributes
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Returns all nodes other than unknown and removed. |
Up | 1 | Returns all up nodes. |
Down | 2 | Returns all down nodes. |
Enabling | 4 | Returns all nodes that are currently enabling. |
Disabling | 8 | Returns all nodes that are currently disabling. |
Disabled | 16 | Returns all disabled nodes. |
Unknown | 32 | Returns all nodes that are in Unknown state. |
Removed | 64 | Returns all removed nodes. |
All | 65535 | Returns all nodes. |
Remarks
This enumeration has a FlagsAttribute that allows a bitwise combination of its members.
Applies to
Azure SDK for .NET