Packages

o

nelson

ManifestValidator

object ManifestValidator

Source
ManifestValidator.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ManifestValidator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class ManifestValidation(units: List[NelsonUnit], config: String) extends Product with Serializable

    A nelson manifest that we want to validate

    A nelson manifest that we want to validate

    units

    the units that are to be verified

    config

    the complete string content of the manifest file

  2. final case class NelsonUnit(kind: String, name: String) extends Product with Serializable

    A (potentially) deployable unit

    A (potentially) deployable unit

    kind

    ex: howdy-http

    name

    ex: howdy-http-0.4

  3. type Valid[A] = Validated[NonEmptyList[NelsonError], A]

Value Members

  1. def parseManifestAndValidate(str: String, cfg: NelsonConfig): IO[Valid[Manifest]]
  2. def validate(str: String, units: List[NelsonUnit]): NelsonK[Valid[Manifest]]
  3. def validateAlerts(unit: UnitDef, p: Plan): IO[Valid[Unit]]
  4. def validateHealthCheck(check: HealthCheck, unit: UnitDef): Valid[Unit]
  5. def validateLoadbalancer(lb: Loadbalancer, units: List[UnitDef], whiteList: Option[ProxyPortWhitelist]): Valid[Unit]
  6. def validateOnCommit(un: UnitName, ns: NamespaceName, m: Manifest): Valid[Manifest]
  7. def validatePeriodic(unit: UnitDef, plan: Plan): Valid[Unit]
  8. def validateResource(r: Resource, plan: Plan): Valid[Unit]
  9. def validateUnit(unit: UnitDef, plan: Plan): IO[Valid[Unit]]
  10. def validateUnitKind(unit: NelsonUnit, manifest: Manifest): Valid[Unit]
  11. def validateUnitNameChars(unit: UnitDef): Valid[Unit]
  12. def validateUnitNameLength(unit: UnitDef): Valid[Unit]
  13. object Json