Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetResourceMapping ¶ added in v0.23.0
func GetResourceMapping() map[string]interface{}
Need to do reflect of ResourceConfig
Types ¶
type Resource ¶
type Resource interface {
Source(workingDir string, sourceResult *result.Source) error
Condition(version string, scm scm.ScmHandler) (pass bool, message string, err error)
Target(source string, scm scm.ScmHandler, dryRun bool, targetResult *result.Target) (err error)
Changelog() string
}
Resource allow to manipulate a resource that can be a source, a condition or a target
func New ¶
func New(rs ResourceConfig) (resource Resource, err error)
New returns a newly initialized Resource or an error
type ResourceConfig ¶
type ResourceConfig struct {
// dependson specifies which resources must be executed before the current one
DependsOn []string `yaml:",omitempty"`
// name specifies the resource name
Name string `yaml:",omitempty"`
// kind specifies the resource kind which defines accepted spec value
Kind string `yaml:",omitempty" jsonschema:"required"`
// transformers defines how the default input value need to be transformed
Transformers transformer.Transformers `yaml:",omitempty"`
// spec specifies parameters for a specific resource kind
Spec interface{} `yaml:",omitempty"`
// scmid specifies the scm configuration key associated to the current resource
SCMID string `yaml:",omitempty"` // SCMID references a uniq scm configuration
// !deprecated, please use scmid
DeprecatedSCMID string `yaml:"scmID,omitempty" jsonschema:"-"` // SCMID references a uniq scm configuration
// !deprecated, please use dependson
DeprecatedDependsOn []string `yaml:"depends_on,omitempty" jsonschema:"-"` // depends_on specifies which resources must be executed before the current one
}
Click to show internal directories.
Click to hide internal directories.