Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DeploymentAlreadyExistsError ¶
type DeploymentAlreadyExistsError struct {
DeploymentName string
}
func (DeploymentAlreadyExistsError) Error ¶
func (err DeploymentAlreadyExistsError) Error() string
type DeploymentDoNotExistsError ¶
type DeploymentDoNotExistsError struct {
DeploymentName string
}
func (DeploymentDoNotExistsError) Error ¶
func (err DeploymentDoNotExistsError) Error() string
type Manager ¶
type Manager interface { List() ([]string, error) Get(name string) (deployment.Deployment, error) Create(name string, storageRepoURI string, codeRepoURI string, codeRepoPath string, terraformVersion string, flavour string) error Clone(name string, storageRepoURI string, codeRepoURI string) error Delete(name string) error }
Manager interface that provides methods to manage differents deployments.
func GetManager ¶
func GetManager() Manager
GetManager returns the manager global variable, that was initialized by InitializeManager function
type ManagerUnsupportedConnectorError ¶
type ManagerUnsupportedConnectorError struct {
Connector string
}
func (ManagerUnsupportedConnectorError) Error ¶
func (err ManagerUnsupportedConnectorError) Error() string
Click to show internal directories.
Click to hide internal directories.