Packages

c

com.datasolvr.services.facade

PipelineSnapshotInfo

case class PipelineSnapshotInfo(version: UUID, versionDateTime: LocalDateTime, isPersisted: Boolean, lastModified: LocalDateTime, creationUser: String, sourceSnapshotVersions: List[SourceSnapshotVersion], transformSnapshotVersions: List[TransformSnapshotVersion], pluginVersions: List[PluginVersion], configId: String, configVersion: UUID, tag: String, outputTransformIds: List[String], expires: Option[LocalDateTime], checkpoints: List[PipelineCheckpoint] = List(), deletedColumns: List[ColumnDeletion] = List(), dataVersion: Option[Int] = None, sizeBytes: Option[Long] = None) extends SnapshotInfoBase with Product with Serializable

Holds information on a pipeline snapshot. A pipeline snapshot has data on the timestamp, tag, configuration versions and other snapshots used for building the result data and whether result data is persisted. It also logs which user created the snapshot and when the snapshot may expire (after which it will eventually be deleted). Additionally it has information on which transforms has a result data set and whether they can used as checkpoints.

Linear Supertypes
Serializable, Product, Equals, SnapshotInfoBase, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PipelineSnapshotInfo
  2. Serializable
  3. Product
  4. Equals
  5. SnapshotInfoBase
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PipelineSnapshotInfo(version: UUID, versionDateTime: LocalDateTime, isPersisted: Boolean, lastModified: LocalDateTime, creationUser: String, sourceSnapshotVersions: List[SourceSnapshotVersion], transformSnapshotVersions: List[TransformSnapshotVersion], pluginVersions: List[PluginVersion], configId: String, configVersion: UUID, tag: String, outputTransformIds: List[String], expires: Option[LocalDateTime], checkpoints: List[PipelineCheckpoint] = List(), deletedColumns: List[ColumnDeletion] = List(), dataVersion: Option[Int] = None, sizeBytes: Option[Long] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val checkpoints: List[PipelineCheckpoint]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  7. val configId: String
  8. val configVersion: UUID
  9. val creationUser: String
  10. def dataLocation: String
    Definition Classes
    SnapshotInfoBase
  11. val dataVersion: Option[Int]
  12. val deletedColumns: List[ColumnDeletion]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. val expires: Option[LocalDateTime]
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  16. def getCompatibleImports(other: PipelineSnapshotInfo): List[String]

    Compares this snapshot to another and determines which imported snapshots are compatible.

    Compares this snapshot to another and determines which imported snapshots are compatible. Imports are compatible if they use the same tag and snapshot UUID.

    other

    The snapshot to compare with.

  17. def getCompatibleTransformIds(other: PipelineSnapshotInfo, configVersions: Map[UUID, PipelineContent]): List[String]

    Compares this snapshot to another and determines which transforms are compatible.

    Compares this snapshot to another and determines which transforms are compatible. Transforms are compatible if they have the same configuration and if all their dependencies are compatible.

    other

    The snapshot to compare with.

    configVersions

    A map of configuration versions to use as lookup.

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. val isPersisted: Boolean
  20. val lastModified: LocalDateTime
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  24. val outputTransformIds: List[String]
  25. val pluginVersions: List[PluginVersion]
  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. val sizeBytes: Option[Long]
  28. val sourceSnapshotVersions: List[SourceSnapshotVersion]
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. val tag: String
  31. val transformSnapshotVersions: List[TransformSnapshotVersion]
  32. val version: UUID
  33. val versionDateTime: LocalDateTime
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from SnapshotInfoBase

Inherited from AnyRef

Inherited from Any

Ungrouped