Documentation
¶
Overview ¶
Package raw provides the defined raw types for Vela.
Deprecated: all raw types for Vela have been moved to github.com/go-vela/server/compiler/types/raw .
This package is frozen.
Index ¶
- type StringSlicedeprecated
- type StringSliceMapdeprecated
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StringSlice
deprecated
type StringSlice []string
StringSlice represents a string or an array of strings.
Deprecated: use StringSlice from github.com/go-vela/server/compiler/types/raw instead.
func (*StringSlice) UnmarshalJSON ¶
func (s *StringSlice) UnmarshalJSON(b []byte) error
UnmarshalJSON implements the Unmarshaler interface for the StringSlice type.
func (*StringSlice) UnmarshalYAML ¶
func (s *StringSlice) UnmarshalYAML(unmarshal func(interface{}) error) error
UnmarshalYAML implements the Unmarshaler interface for the StringSlice type.
type StringSliceMap
deprecated
StringSliceMap represents an array of strings or a map of strings.
Deprecated: use StringSliceMap from github.com/go-vela/server/compiler/types/raw instead.
func (*StringSliceMap) Scan ¶ added in v0.7.0
func (s *StringSliceMap) Scan(value interface{}) error
Scan decodes the JSON string into map[string]string.
func (*StringSliceMap) UnmarshalJSON ¶
func (s *StringSliceMap) UnmarshalJSON(b []byte) error
UnmarshalJSON implements the Unmarshaler interface for the StringSlice type.
func (*StringSliceMap) UnmarshalYAML ¶
func (s *StringSliceMap) UnmarshalYAML(unmarshal func(interface{}) error) error
UnmarshalYAML implements the Unmarshaler interface for the StringSliceMap type.