class PipelineStatus
- PipelineStatus
- Reference
- Object
Included Modules
- JSON::Serializable
- YAML::Serializable
Extended Modules
- JSON::Schema
Defined in:
models/pipeline_status.crConstructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
- .new(status_available : Bool = true, errors : Hash(String, String) = {} of String => String, warnings : Hash(String, String) = {} of String => String)
Instance Method Summary
-
#errors : Hash(String, String)
hash of subsystem => issue description
-
#errors=(errors : Hash(String, String))
hash of subsystem => issue description
- #last_updated : Time
- #last_updated=(last_updated : Time)
- #status_available=(status_available : Bool)
- #status_available? : Bool
- #warnings : Hash(String, String)
- #warnings=(warnings : Hash(String, String))
Constructor Detail
def self.new(status_available : Bool = true, errors : Hash(String, String) = {} of String => String, warnings : Hash(String, String) = {} of String => String)
#