-
Notifications
You must be signed in to change notification settings - Fork 1
/
statuses.go
26 lines (23 loc) · 990 Bytes
/
statuses.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// DISCLAIMER
//
// Copyright 2020 ArangoDB GmbH, Cologne, Germany
//
// Author Gergely Brautigam
//
package v1
const (
// Installation states
// ExampleInstallationStatusInProgress means that the pod was created successfull and the data is being generated / imported
ExampleInstallationStatusInProgress = "InProgress"
// ExampleInstallationStatusCreating means that the database name has been created.
ExampleInstallationStatusCreating = "Creating"
// ExampleInstallationStatusCreated means that the database has been successfully created.
ExampleInstallationStatusCreated = "Created"
// ExampleInstallationStatusReady means that the data is ready to be used.
ExampleInstallationStatusReady = "Ready"
// ExampleInstallationStatusFailed denotes a dataset which has failed to be created.
ExampleInstallationStatusFailed = "Failed"
// ExampleInstallationStatusDeleted denotes a dataset of which the database has been deleted.
ExampleInstallationStatusDeleted = "Deleted"
)