Documentation
¶
Index ¶
- type RuntimeCmdRepo
- func (repo *RuntimeCmdRepo) CreatePhpVirtualHost(hostname tkValueObject.Fqdn) error
- func (repo *RuntimeCmdRepo) DeletePhpVirtualHost(hostname tkValueObject.Fqdn) error
- func (repo *RuntimeCmdRepo) RunPhpCommand(runRequest dto.RunPhpCommandRequest) (runResponse dto.RunPhpCommandResponse, err error)
- func (repo *RuntimeCmdRepo) UpdatePhpModules(hostname tkValueObject.Fqdn, expectedPhpVersion valueObject.PhpVersion, ...) (responseDto dto.UpdatePhpModulesResponse, err error)
- func (repo *RuntimeCmdRepo) UpdatePhpSettings(hostname tkValueObject.Fqdn, settingsEntities []entity.PhpSetting) error
- func (repo *RuntimeCmdRepo) UpdatePhpVersion(hostname tkValueObject.Fqdn, version valueObject.PhpVersion) error
- func (repo *RuntimeCmdRepo) UpdatePhpVirtualHostHostname(previousHostname, newHostname tkValueObject.Fqdn, ...) error
- type RuntimeQueryRepo
- func (repo RuntimeQueryRepo) ReadPhpConfigs(hostname tkValueObject.Fqdn) (phpConfigsEntity entity.PhpConfigs, err error)
- func (repo RuntimeQueryRepo) ReadPhpModules(version valueObject.PhpVersion) (phpModulesEntities []entity.PhpModule, err error)
- func (repo RuntimeQueryRepo) ReadPhpSettings(hostname tkValueObject.Fqdn) (phpSettingsEntities []entity.PhpSetting, err error)
- func (repo RuntimeQueryRepo) ReadPhpVersion(hostname tkValueObject.Fqdn) (phpVersionEntity entity.PhpVersion, err error)
- func (repo RuntimeQueryRepo) ReadPhpVersionsInstalled() (phpVersions []valueObject.PhpVersion, err error)
- func (repo RuntimeQueryRepo) ReadPhpVirtualHostConfFilePath(vhostHostname tkValueObject.Fqdn) (phpVirtualHostConfFilePath tkValueObject.UnixAbsoluteFilePath, err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RuntimeCmdRepo ¶
type RuntimeCmdRepo struct {
// contains filtered or unexported fields
}
func NewRuntimeCmdRepo ¶
func NewRuntimeCmdRepo( persistentDbSvc *internalDbInfra.PersistentDatabaseService, ) *RuntimeCmdRepo
func (*RuntimeCmdRepo) CreatePhpVirtualHost ¶
func (repo *RuntimeCmdRepo) CreatePhpVirtualHost(hostname tkValueObject.Fqdn) error
func (*RuntimeCmdRepo) DeletePhpVirtualHost ¶ added in v0.3.3
func (repo *RuntimeCmdRepo) DeletePhpVirtualHost(hostname tkValueObject.Fqdn) error
func (*RuntimeCmdRepo) RunPhpCommand ¶ added in v0.2.6
func (repo *RuntimeCmdRepo) RunPhpCommand( runRequest dto.RunPhpCommandRequest, ) (runResponse dto.RunPhpCommandResponse, err error)
func (*RuntimeCmdRepo) UpdatePhpModules ¶
func (repo *RuntimeCmdRepo) UpdatePhpModules( hostname tkValueObject.Fqdn, expectedPhpVersion valueObject.PhpVersion, modulesToUpdateEntities []entity.PhpModule, ) (responseDto dto.UpdatePhpModulesResponse, err error)
func (*RuntimeCmdRepo) UpdatePhpSettings ¶
func (repo *RuntimeCmdRepo) UpdatePhpSettings( hostname tkValueObject.Fqdn, settingsEntities []entity.PhpSetting, ) error
func (*RuntimeCmdRepo) UpdatePhpVersion ¶
func (repo *RuntimeCmdRepo) UpdatePhpVersion( hostname tkValueObject.Fqdn, version valueObject.PhpVersion, ) error
func (*RuntimeCmdRepo) UpdatePhpVirtualHostHostname ¶ added in v0.3.1
func (repo *RuntimeCmdRepo) UpdatePhpVirtualHostHostname( previousHostname, newHostname tkValueObject.Fqdn, aliasesHostnames []tkValueObject.Fqdn, ) error
type RuntimeQueryRepo ¶
type RuntimeQueryRepo struct {
// contains filtered or unexported fields
}
func NewRuntimeQueryRepo ¶ added in v0.2.8
func NewRuntimeQueryRepo() *RuntimeQueryRepo
func (RuntimeQueryRepo) ReadPhpConfigs ¶
func (repo RuntimeQueryRepo) ReadPhpConfigs( hostname tkValueObject.Fqdn, ) (phpConfigsEntity entity.PhpConfigs, err error)
func (RuntimeQueryRepo) ReadPhpModules ¶
func (repo RuntimeQueryRepo) ReadPhpModules( version valueObject.PhpVersion, ) (phpModulesEntities []entity.PhpModule, err error)
func (RuntimeQueryRepo) ReadPhpSettings ¶
func (repo RuntimeQueryRepo) ReadPhpSettings( hostname tkValueObject.Fqdn, ) (phpSettingsEntities []entity.PhpSetting, err error)
func (RuntimeQueryRepo) ReadPhpVersion ¶
func (repo RuntimeQueryRepo) ReadPhpVersion( hostname tkValueObject.Fqdn, ) (phpVersionEntity entity.PhpVersion, err error)
func (RuntimeQueryRepo) ReadPhpVersionsInstalled ¶
func (repo RuntimeQueryRepo) ReadPhpVersionsInstalled() ( phpVersions []valueObject.PhpVersion, err error, )
func (RuntimeQueryRepo) ReadPhpVirtualHostConfFilePath ¶ added in v0.3.1
func (repo RuntimeQueryRepo) ReadPhpVirtualHostConfFilePath( vhostHostname tkValueObject.Fqdn, ) (phpVirtualHostConfFilePath tkValueObject.UnixAbsoluteFilePath, err error)
Click to show internal directories.
Click to hide internal directories.