mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-21 16:00:13 -04:00
24 lines
514 B
Go
24 lines
514 B
Go
package ociinstaller
|
|
|
|
import "github.com/turbot/pipe-fittings/v2/ociinstaller"
|
|
|
|
type dbImage struct {
|
|
ArchiveDir string
|
|
ReadmeFile string
|
|
LicenseFile string
|
|
}
|
|
|
|
func (s *dbImage) Type() ociinstaller.ImageType {
|
|
return ImageTypeDatabase
|
|
}
|
|
|
|
type dbImageConfig struct {
|
|
ociinstaller.OciConfigBase
|
|
Database struct {
|
|
Name string `json:"name,omitempty"`
|
|
Organization string `json:"organization,omitempty"`
|
|
Version string `json:"version"`
|
|
DBVersion string `json:"dbVersion,omitempty"`
|
|
}
|
|
}
|