Admin

  • set_current_key(entity_id, bucket_id, PKB)

    • Description:

      • Updates PKB for the selected bucket

  • Parameters:

    • Entity_id: the id of the entity

    • bucket_id: the bucket to update with the PKB

    • PKB: new public key or key id

  • create_tag(bucket_id, tag)

    • Description:

      • Creates a new tag for a bucket. Only known tags can be used when writing messages.

    • Parameters

      • Entity_id: the id of the entity

      • Bucket_id: the bucket to add the new tag

      • Tag: a unique tag in context of the bucket.

  • pause_write(entity_id, bucket_id)

    • Description

      • Pauses the write operation on the entity.

    • Parameters

      • entity_id: The entity_id

      • Bucket_id: the bucket to pause writing for

  • resume_write(entity_id, bucket_id, PKB)

    • Description

      • resume the the write operation on the entity

    • Parameters

      • entity_id: The entity_id

      • Bucket_id: the bucket to pause writing for

      • PKB: new public key or key id

  • grant_write_access(entity_id, bucket_id, contributor)

    • Description

      • Adds a new contributor to a bucket

    • Parameters

      • Entity_id: the id of the entity

      • bucket_id: The bucket_id

      • Contributor: account who should be able to write in the bucket

  • remove_write_access(entity_id, bucket_id, contributor)

    • Description

      • Removes an existing contributor from a bucket.

    • Parameters

      • Entity_id: the id of the entity

      • bucket_id: The bucket_id

      • Contributor: account to remove write access

Last updated