SequenceRows

class SequenceRows[F[_]](val requestSession: RequestSession[F])(implicit F: Monad[F]) extends WithRequestSession[F] with BaseUrl
Companion:
object
trait BaseUrl
class Object
trait Matchable
class Any

Value members

Concrete methods

def delete(cogniteId: CogniteId, rows: Seq[Long]): F[Unit]
def deleteByExternalId(externalId: String, rows: Seq[Long]): F[Unit]
def deleteById(id: Long, rows: Seq[Long]): F[Unit]
def insert(cogniteId: CogniteId, columns: Seq[String], rows: Seq[SequenceRow]): F[Unit]
def insertByExternalId(externalId: String, columns: Seq[String], rows: Seq[SequenceRow]): F[Unit]
def insertById(id: Long, columns: Seq[String], rows: Seq[SequenceRow]): F[Unit]
def query(cogniteId: CogniteId, inclusiveStart: Option[Long], exclusiveEnd: Option[Long], limit: Option[Int], columns: Option[Seq[String]], batchSize: Int): F[(Seq[SequenceColumnSignature], Stream[F, SequenceRow])]
def queryByExternalId(externalId: String, inclusiveStart: Option[Long], exclusiveEnd: Option[Long], limit: Option[Int], columns: Option[Seq[String]], batchSize: Int): F[(Seq[SequenceColumnSignature], Stream[F, SequenceRow])]
def queryById(id: Long, inclusiveStart: Option[Long], exclusiveEnd: Option[Long], limit: Option[Int], columns: Option[Seq[String]], batchSize: Int): F[(Seq[SequenceColumnSignature], Stream[F, SequenceRow])]

Concrete fields

override val baseUrl: Uri

Implicits

Implicits

implicit val errorOrUnitDecoder: Decoder[Either[CdpApiError, Unit]]