github.com/altipla-consulting/ravendb-go-client@v0.1.3/index_state.go (about)

     1  package ravendb
     2  
     3  type IndexState = string
     4  
     5  const (
     6  	IndexStateNormal   = "Normal"
     7  	IndexStateDisabled = "Disabled"
     8  	IndexStateIdle     = "Idle"
     9  	IndexStateError    = "Error"
    10  )