LogExtentState 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.
Describes the current state of a LogExtent instance.
public enum class LogExtentState
public enum LogExtentState
type LogExtentState =
Public Enum LogExtentState
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | The status of the LogExtent instance is unknown. |
Initializing | 1 | The LogExtent instance has not yet been allocated to the LogStore. |
Inactive | 2 | The LogExtent instance has been allocated to the LogStore but does not contain any active data. |
Active | 4 | The LogExtent instance is being used as storage for the LogStore. |
ActivePendingDelete | 8 | The LogExtent instance is marked for deletion but still contains some active data. |
PendingArchive | 16 | The LogExtent instance does not contain any active data, but contains data that has not yet been archived. |
PendingArchiveAndDelete | 32 | The LogExtent instance is marked for deletion but still contains data that has not been archived. |