17 lines
426 B
Go
17 lines
426 B
Go
package libvirt
|
|
|
|
import (
|
|
// libvirt "github.com/digitalocean/go-libvirt"
|
|
// "github.com/hashicorp/terraform-plugin-sdk/v2/helper/retry"
|
|
)
|
|
|
|
const (
|
|
resourceStateConfSuccess = "SUCCESS"
|
|
resourceStateConfError = "ERROR"
|
|
resourceStateConfPending = "PENDING"
|
|
resourceStateConfDone = "DONE"
|
|
resourceStateConfActive = "ACTIVE"
|
|
resourceStateConfNotExists = "NOT-EXISTS"
|
|
resourceStateConfExists = "EXISTS"
|
|
)
|