Packages

package authz

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class AccessControlException extends RuntimeException

    This exception is thrown by the Kyuubi AuthZ module to indicate that a requested access is denied.

  2. case class PrivilegeObject(privilegeObjectType: PrivilegeObjectType, actionType: PrivilegeObjectActionType, dbname: String, objectName: String, columns: Seq[String], owner: Option[String], catalog: Option[String]) extends Product with Serializable

    Build a Spark logical plan to different PrivilegeObjects - For queries, they may generates a list of **input** PrivilegeObjects, which describe a SELECT-only privilege type for different tables or columns

    Build a Spark logical plan to different PrivilegeObjects - For queries, they may generates a list of **input** PrivilegeObjects, which describe a SELECT-only privilege type for different tables or columns

    - For commands, they may generates a list of **out** PrivilegeObjects, which describe a CREATE/ALTER/DELETE-related privilege type for different objects, sometimes they also generates a list of **input** PrivilegeObjects if contain a child query, like CTAS.

    Then we converts all of these lists to AccessRequest to the apache ranger admin server.

    privilegeObjectType

    db, table, function

    actionType

    describe the action on a object

    dbname

    database name

    objectName

    object name - database, table, or function

    columns

    column list if any

Value Members

  1. object ObjectType extends Enumeration
  2. object OperationType extends Enumeration
  3. object PrivilegeObject extends Serializable
  4. object PrivilegeObjectActionType extends Enumeration
  5. object PrivilegeObjectType extends Enumeration
  6. object PrivilegesBuilder

Ungrouped