Class/Object

com.cognite.sdk.scala.v1.resources

DataPointsResource

Related Docs: object DataPointsResource | package resources

Permalink

class DataPointsResource[F[_]] extends WithRequestSession[F] with BaseUrl

Linear Supertypes
BaseUrl, WithRequestSession[F], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DataPointsResource
  2. BaseUrl
  3. WithRequestSession
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DataPointsResource(requestSession: RequestSession[F])(implicit arg0: Monad[F])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val baseUrl: Uri

    Permalink
    Definition Classes
    DataPointsResourceBaseUrl
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  7. def deleteRangeByExternalId(externalId: String, inclusiveStart: Instant, exclusiveEnd: Instant): F[Unit]

    Permalink
  8. def deleteRangeById(id: Long, inclusiveStart: Instant, exclusiveEnd: Instant): F[Unit]

    Permalink
  9. def deleteRanges(ranges: Seq[DeleteDataPointsRange]): F[Unit]

    Permalink
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. implicit val errorOrDataPointsByExternalIdResponseDecoder: Decoder[Either[CdpApiError, Items[DataPointsByExternalIdResponse]]]

    Permalink
  13. implicit val errorOrDataPointsByIdResponseDecoder: Decoder[Either[CdpApiError, Items[DataPointsByIdResponse]]]

    Permalink
  14. implicit val errorOrStringDataPointsByExternalIdResponseDecoder: Decoder[Either[CdpApiError, Items[StringDataPointsByExternalIdResponse]]]

    Permalink
  15. implicit val errorOrStringDataPointsByIdResponseDecoder: Decoder[Either[CdpApiError, Items[StringDataPointsByIdResponse]]]

    Permalink
  16. implicit val errorOrUnitDecoder: Decoder[Either[CdpApiError, Unit]]

    Permalink
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  18. def getLatestDataPointByExternalId(externalId: String): F[Option[DataPoint]]

    Permalink
  19. def getLatestDataPointById(id: Long): F[Option[DataPoint]]

    Permalink
  20. def getLatestDataPointsByExternalIds(ids: Seq[String], ignoreUnknownIds: Boolean = false): F[Map[String, Option[DataPoint]]]

    Permalink
  21. def getLatestDataPointsByIds(ids: Seq[Long], ignoreUnknownIds: Boolean = false): F[Map[Long, Option[DataPoint]]]

    Permalink
  22. def getLatestStringDataPointByExternalId(externalId: String): F[Option[StringDataPoint]]

    Permalink
  23. def getLatestStringDataPointByExternalIds(ids: Seq[String], ignoreUnknownIds: Boolean = false): F[Map[String, Option[StringDataPoint]]]

    Permalink
  24. def getLatestStringDataPointById(id: Long): F[Option[StringDataPoint]]

    Permalink
  25. def getLatestStringDataPointByIds(ids: Seq[Long], ignoreUnknownIds: Boolean = false): F[Map[Long, Option[StringDataPoint]]]

    Permalink
  26. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  27. def insertByExternalId(externalId: String, dataPoints: Seq[DataPoint]): F[Unit]

    Permalink
  28. def insertById(id: Long, dataPoints: Seq[DataPoint]): F[Unit]

    Permalink
  29. def insertStringsByExternalId(externalId: String, dataPoints: Seq[StringDataPoint]): F[Unit]

    Permalink
  30. def insertStringsById(id: Long, dataPoints: Seq[StringDataPoint]): F[Unit]

    Permalink
  31. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  32. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  33. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  34. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  35. def queryAggregatesByExternalId(externalId: String, inclusiveStart: Instant, exclusiveEnd: Instant, granularity: String, aggregates: Seq[String], limit: Option[Int] = None): F[Map[String, Seq[DataPointsByIdResponse]]]

    Permalink
  36. def queryAggregatesByExternalIds(externalIds: Seq[String], inclusiveStart: Instant, exclusiveEnd: Instant, granularity: String, aggregates: Seq[String], limit: Option[Int] = None, ignoreUnknownIds: Boolean = false): F[Map[String, Seq[DataPointsByIdResponse]]]

    Permalink
  37. def queryAggregatesById(id: Long, inclusiveStart: Instant, exclusiveEnd: Instant, granularity: String, aggregates: Seq[String], limit: Option[Int] = None): F[Map[String, Seq[DataPointsByIdResponse]]]

    Permalink
  38. def queryAggregatesByIds(ids: Seq[Long], inclusiveStart: Instant, exclusiveEnd: Instant, granularity: String, aggregates: Seq[String], limit: Option[Int] = None, ignoreUnknownIds: Boolean = false): F[Map[String, Seq[DataPointsByIdResponse]]]

    Permalink
  39. def queryByExternalId(externalId: String, inclusiveStart: Instant, exclusiveEnd: Instant, limit: Option[Int] = None): F[DataPointsByExternalIdResponse]

    Permalink
    Annotations
    @SuppressWarnings()
  40. def queryByExternalIds(externalIds: Seq[String], inclusiveStart: Instant, exclusiveEnd: Instant, limit: Option[Int] = None, ignoreUnknownIds: Boolean = false): F[Seq[DataPointsByExternalIdResponse]]

    Permalink
  41. def queryById(id: Long, inclusiveStart: Instant, exclusiveEnd: Instant, limit: Option[Int] = None): F[DataPointsByIdResponse]

    Permalink
    Annotations
    @SuppressWarnings()
  42. def queryByIds(ids: Seq[Long], inclusiveStart: Instant, exclusiveEnd: Instant, limit: Option[Int] = None, ignoreUnknownIds: Boolean = false): F[Seq[DataPointsByIdResponse]]

    Permalink
  43. def queryStringsByExternalId(externalId: String, inclusiveStart: Instant, exclusiveEnd: Instant, limit: Option[Int] = None): F[StringDataPointsByExternalIdResponse]

    Permalink
    Annotations
    @SuppressWarnings()
  44. def queryStringsByExternalIds(externalIds: Seq[String], inclusiveStart: Instant, exclusiveEnd: Instant, limit: Option[Int] = None, ignoreUnknownIds: Boolean = false): F[Seq[StringDataPointsByExternalIdResponse]]

    Permalink
  45. def queryStringsById(id: Long, inclusiveStart: Instant, exclusiveEnd: Instant, limit: Option[Int] = None): F[StringDataPointsByIdResponse]

    Permalink
    Annotations
    @SuppressWarnings()
  46. def queryStringsByIds(ids: Seq[Long], inclusiveStart: Instant, exclusiveEnd: Instant, limit: Option[Int] = None, ignoreUnknownIds: Boolean = false): F[Seq[StringDataPointsByIdResponse]]

    Permalink
  47. val requestSession: RequestSession[F]

    Permalink
    Definition Classes
    DataPointsResourceWithRequestSession
  48. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  49. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  50. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from BaseUrl

Inherited from WithRequestSession[F]

Inherited from AnyRef

Inherited from Any

Ungrouped