mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 16:54:23 +01:00
44 lines
879 B
Go
44 lines
879 B
Go
package env_core
|
|
|
|
import "github.com/openziti/zrok/rest_client_zrok"
|
|
|
|
// Root is the primary interface encapsulating the on-disk environment data.
|
|
type Root interface {
|
|
Metadata() *Metadata
|
|
Obliterate() error
|
|
|
|
HasConfig() (bool, error)
|
|
Config() *Config
|
|
SetConfig(cfg *Config) error
|
|
|
|
Client() (*rest_client_zrok.Zrok, error)
|
|
ApiEndpoint() (string, string)
|
|
|
|
IsEnabled() bool
|
|
Environment() *Environment
|
|
SetEnvironment(env *Environment) error
|
|
DeleteEnvironment() error
|
|
|
|
PublicIdentityName() string
|
|
EnvironmentIdentityName() string
|
|
|
|
ZitiIdentityNamed(name string) (string, error)
|
|
SaveZitiIdentityNamed(name, data string) error
|
|
DeleteZitiIdentityNamed(name string) error
|
|
}
|
|
|
|
type Environment struct {
|
|
Token string
|
|
ZitiIdentity string
|
|
ApiEndpoint string
|
|
}
|
|
|
|
type Config struct {
|
|
ApiEndpoint string
|
|
}
|
|
|
|
type Metadata struct {
|
|
V string
|
|
RootPath string
|
|
}
|