c

dynamics.client

MetadataCache

class MetadataCache extends AnyRef

Simple metadata cache for CRM metadata.

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

Instance Constructors

  1. new MetadataCache(dynclient: DynamicsClient, LCID: Int = 1033)(implicit F: MonadError[IO, Throwable], ec: ExecutionContext)

Value Members

  1. def attributeMetadataId(entitySetName: String, attribute: String): IO[Option[String]]
  2. def attributeType(ename: String, aname: String): IO[Option[String]]

    Given an entity set name and an attribute name, return the attribute type.

    Given an entity set name and an attribute name, return the attribute type. The AttributeType is a simple string and is not AttributeTypeName which typically places a suffix "Type" at the end of the type name.

  3. def baseAttributes(entityName: String): IO[Seq[AttributeMetadata]]
  4. def connectionRole(roleName: String): IO[Option[ConnectionRole]]
  5. def connectionRoleCategories(): IO[Seq[OptionValue]]
  6. def connectionRoles(): IO[Seq[ConnectionRole]]
  7. def connectionRolesForCategory(cname: String, ignoreCase: Boolean = false): IO[Seq[ConnectionRole]]
  8. def entityByName(entityName: String): IO[Option[EntityDefinition]]
  9. def entityBySetName(entitySetName: String): IO[Option[EntityDefinition]]
  10. def entityDefinitions(): IO[Seq[EntityDefinition]]
  11. def entityName(entitySetName: String): IO[Option[String]]
  12. def entitySetName(entityName: String): IO[Option[String]]
  13. def globalOptionSet(name: String): IO[Seq[OptionValue]]
  14. def globalOptionSets(): IO[Seq[OptionSetMetadata]]
  15. def hasAttributes(entityName: String, anames: Seq[String]): IO[Boolean]

    Return true if all the attributes on entity exist.

  16. def objectTypeCode(entityName: String): IO[Option[Int]]
  17. def optionValues(entitySet: String, attribute: String): IO[Seq[OptionValue]]

    Obtain option values give an entity and attribute combination.

    Obtain option values give an entity and attribute combination.

    To do

    Should we signal an error if either entiytSet or attribute is not found?

  18. def pk(entityName: String): IO[Option[String]]

Deprecated Value Members

  1. def entityDescription(entitySet: String): IO[Option[EntityDefinition]]

    Deprecated

    Use entitySetName