36 lines
804 B
Go
36 lines
804 B
Go
package datastore
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type SpecID int64
|
|
|
|
type Spec struct {
|
|
ID SpecID `json:"id"`
|
|
DefinitionName string `json:"name"`
|
|
DefinitionVersion string `json:"version"`
|
|
Data map[string]any `json:"data"`
|
|
Revision int `json:"revision"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
TenantID TenantID `json:"tenantId"`
|
|
AgentID AgentID `json:"agentId"`
|
|
}
|
|
|
|
func (s *Spec) SpecDefinitionName() string {
|
|
return s.DefinitionName
|
|
}
|
|
|
|
func (s *Spec) SpecDefinitionVersion() string {
|
|
return s.DefinitionVersion
|
|
}
|
|
|
|
func (s *Spec) SpecRevision() int {
|
|
return s.Revision
|
|
}
|
|
|
|
func (s *Spec) SpecData() map[string]any {
|
|
return s.Data
|
|
}
|