This section introduces methods for controlling access to the database, graphs, and data.
Privilege
showPrivilege()
Retrieves all system privileges and graph privileges.
Parameters
- None.
Returns
List[Privilege]
: The list of retrieved privileges.
# Retrieves all system privileges and graph privileges
privileges = Conn.showPrivilege()
graphPrivileges = [privilege.name for privilege in privileges if privilege.level.name == "GRAPH"]
print("Graph privileges:", graphPrivileges)
systemPrivileges = [privilege.name for privilege in privileges if privilege.level.name == "SYSTEM"]
print("System privileges:", systemPrivileges)
Graph privileges: ['READ', 'INSERT', 'UPSERT', 'UPDATE', 'DELETE', 'CREATE_SCHEMA', 'DROP_SCHEMA', 'ALTER_SCHEMA', 'SHOW_SCHEMA', 'RELOAD_SCHEMA', 'CREATE_PROPERTY', 'DROP_PROPERTY', 'ALTER_PROPERTY', 'SHOW_PROPERTY', 'CREATE_FULLTEXT', 'DROP_FULLTEXT', 'SHOW_FULLTEXT', 'CREATE_INDEX', 'DROP_INDEX', 'SHOW_INDEX', 'LTE', 'UFE', 'CLEAR_JOB', 'STOP_JOB', 'SHOW_JOB', 'ALGO', 'CREATE_PROJECT', 'SHOW_PROJECT', 'DROP_PROJECT', 'CREATE_HDC_GRAPH', 'SHOW_HDC_GRAPH', 'DROP_HDC_GRAPH', 'COMPACT_HDC_GRAPH', 'SHOW_VECTOR_INDEX', 'CREATE_VECTOR_INDEX', 'DROP_VECTOR_INDEX', 'SHOW_CONSTRAINT', 'CREATE_CONSTRAINT', 'DROP_CONSTRAINT']
System privileges: ['TRUNCATE', 'COMPACT', 'CREATE_GRAPH', 'SHOW_GRAPH', 'DROP_GRAPH', 'ALTER_GRAPH', 'TOP', 'KILL', 'STAT', 'SHOW_POLICY', 'CREATE_POLICY', 'DROP_POLICY', 'ALTER_POLICY', 'SHOW_USER', 'CREATE_USER', 'DROP_USER', 'ALTER_USER', 'SHOW_PRIVILEGE', 'SHOW_META', 'SHOW_SHARD', 'ADD_SHARD', 'DELETE_SHARD', 'REPLACE_SHARD', 'SHOW_HDC_SERVER', 'ADD_HDC_SERVER', 'DELETE_HDC_SERVER', 'LICENSE_UPDATE', 'LICENSE_DUMP', 'GRANT', 'REVOKE', 'SHOW_BACKUP', 'CREATE_BACKUP', 'SHOW_VECTOR_SERVER', 'ADD_VECTOR_SERVER', 'DELETE_VECTOR_SERVER']
Policy (Role)
showPolicy()
Retrieves all policies in the database.
Parameters
config: RequestConfig
(Optional): Request configuration.
Returns
List[Policy]
: The list of retrieved policies.
# Retrieves all policies
policies = Conn.showPolicy()
for policy in policies:
print(policy.name)
manager
Tester
sales
superADM
getPolicy()
Retrieves a specified policy from the database.
Parameters
policyName: str
: Name of the policy.config: RequestConfig
(Optional): Request configuration.
Returns
Policy
: The retrieved policy.
# Retrieves the policy 'Tester'
policy = Conn.getPolicy("Tester")
print("Graph Privileges:", policy.graphPrivileges)
print("System Privileges:", policy.systemPrivileges)
print("Property Privileges:")
print("- Node (Read):", policy.propertyPrivileges.node.read)
print("- Node (Write):", policy.propertyPrivileges.node.write)
print("- Node (Deny):", policy.propertyPrivileges.node.deny)
print("- Edge (Read):", policy.propertyPrivileges.edge.read)
print("- Edge (Write):", policy.propertyPrivileges.edge.write)
print("- Edge (Deny):", policy.propertyPrivileges.edge.deny)
print("Policies:", policy.policies)
Graph Privileges: {'amz': ['ALGO', 'DROP_FULLTEXT', 'INSERT', 'DELETE', 'UPSERT'], 'StoryGraph': ['UPDATE', 'READ']}
System Privileges: ['TRUNCATE', 'KILL', 'TOP']
Property Privileges:
- Node (Read): [['*', '*', '*']]
- Node (Write): []
- Node (Deny): []
- Edge (Read): []
- Edge (Write): [['amz', '*', '*'], ['alimama', '*', '*']]
- Edge (Deny): [['miniCircle', 'review', 'value, timestamp']]
Policies: ['sales', 'manager']
createPolicy()
Creates a policy in the database.
Parameters
policy: Policy
: The policy to be created; the attributename
is mandatory,systemPrivileges
,graphPrivileges
,propertyPrivilege
, andpolicies
are optional.config: RequestConfig
(Optional): Request configuration.
Returns
Response
: Response of the request.
# Creates a new policy 'operator'
policy = Policy(
name="operator",
systemPrivileges=["SHOW_GRAPH","TRUNCATE"],
graphPrivileges={
"lcc": ["UPDATE","INSERT","DELETE","UPSERT"]
},
propertyPrivileges=PropertyPrivilege(
node=PropertyPrivilegeElement(
read=[["miniCircle", "account", "*"], ["miniCircle", "movie", "name"]],
write=[["lcc", "*", "*"]]
),
edge=PropertyPrivilegeElement(
read=[["*", "*", "*"]],
deny=[["miniCircle", "*", "*"]]
)
),
policies=['manager', "sales"]
)
response = Conn.createPolicy(policy)
print(response.status.code.name)
SUCCEED
alterPolicy()
Alters the privileges and policies included in a policy. Note that only the mentioned attributes will be updated, others remain unchanged.
Parameters
policy: Policy
: APolicy
object used to set the newsystemPrivileges
,graphPrivileges
,propertyPrivilege
, andpolicies
of an existing policy identified by thename
atttibute.config: RequestConfig
(Optional): Request configuration.
Returns
Response
: Response of the request.
# Alters the policy 'operator'
policy = Policy(
name="operator",
systemPrivileges=["CREATE_GRAPH","SHOW_GRAPH","SHOW_GRAPH","TRUNCATE"],
policies=['manager']
)
response = Conn.alterPolicy(policy)
print(response.status.code.name)
SUCCESS
dropPolicy()
Drops a specified policy from the database.
Parameters
policyName: str
: Name of the policy.config: RequestConfig
(Optional): Request configuration.
Returns
Response
: Response of the request.
# Drops the policy 'operator'
response = Conn.dropPolicy("operator")
print(response.status.code.name)
SUCCESS
User
showUser()
Retrieves all database users.
Parameters
config: RequestConfig
(Optional): Request configuration.
Returns
List[User]
: The list of retrieved users.
# Retrieves all database users
users = Conn.showUser()
for user in users:
print(user.username)
johndoe
root
admin
getUser()
Retrieves a specified database user.
Parameters
username: str
: Username.config: RequestConfig
(Optional): Request configuration.
Returns
User
: The retrieved user.
# Retrieves the database user 'johndoe'
user = Conn.getUser("johndoe")
print("Created Time:", user.createdTime)
print("Graph Privileges:", user.graphPrivileges)
print("System Privileges:", user.systemPrivileges)
print("Property Privileges:")
print("- Node (Read):", user.propertyPrivileges.node.read)
print("- Node (Write):", user.propertyPrivileges.node.write)
print("- Node (Deny):", user.propertyPrivileges.node.deny)
print("- Edge (Read):", user.propertyPrivileges.edge.read)
print("- Edge (Write):", user.propertyPrivileges.edge.write)
print("- Edge (Deny):", user.propertyPrivileges.edge.deny)
print("Policies:", user.policies)
Created Time: 2025-04-02 11:08:38
Graph Privileges: {'amz': ['ALGO', 'INSERT', 'DELETE', 'UPSERT'], 'StoryGraph': ['UPDATE', 'READ']}
System Privileges: ['TRUNCATE', 'KILL', 'TOP']
Property Privileges:
- Node (Read): [['*', '*', '*']]
- Node (Write): []
- Node (Deny): []
- Edge (Read): []
- Edge (Write): [['amz', '*', '*'], ['alimama', '*', '*']]
- Edge (Deny): [['miniCircle', 'review', 'value, timestamp']]
Policies: ['sales', 'manager']
createUser()
Creates a database user.
Parameters
user: User
: The user to be created; the attributesusername
andpassword
are mandatory,systemPrivileges
,graphPrivileges
,propertyPrivilege
, andpolicies
are optional.config: RequestConfig
(Optional): Request configuration.
Returns
Response
: Response of the request.
# Creates a new user 'user01'
user = User(
username="user01",
password="U7MRDBFXd2Ab",
systemPrivileges=["SHOW_GRAPH","TRUNCATE"],
graphPrivileges={
"lcc": ["UPDATE","INSERT","DELETE","UPSERT"]
},
propertyPrivileges=PropertyPrivilege(
node=PropertyPrivilegeElement(
read=[["miniCircle", "account", "*"], ["miniCircle", "movie", "name"]],
write=[["lcc", "*", "*"]]
),
edge=PropertyPrivilegeElement(
read=[["*", "*", "*"]],
deny=[["miniCircle", "*", "*"]]
)
),
policies=['manager', "sales"]
)
response = Conn.createUser(user)
print(response.status.code.name)
SUCCEED
alterUser()
Alters the password, privileges and policies of a user. Note that only the mentioned attributes will be updated, others remain unchanged.
Parameters
user: User
: AUser
object used to set the newpassword
,systemPrivileges
,graphPrivileges
,propertyPrivilege
, andpolicies
of an existing user identified by theusername
atttibute.config: RequestConfig
(Optional): Request configuration.
Returns
Response
: Response of the request.
# Alters the user 'user01'
user = User(
username="user01",
systemPrivileges=["CREATE_GRAPH","SHOW_GRAPH","SHOW_GRAPH","TRUNCATE"],
policies=['manager']
)
response = Conn.alterUser(user)
print(response.status.code.name)
SUCCEED
dropUser()
Drops a specified database user.
Parameters
username: str
: Username.config: RequestConfig
(Optional): Request configuration.
Returns
Response
: Response of the request.
# Drops the user 'user01'
response = Conn.dropUser("user01")
print(response.status.code.name)
SUCCESS
Full Example
from ultipa.structs.PropertyPrivilege import PropertyPrivilege, PropertyPrivilegeElement
from ultipa import UltipaConfig, Connection, Policy
ultipaConfig = UltipaConfig()
# URI example: ultipaConfig.hosts = ["https://mqj4zouys.us-east-1.cloud.ultipa.com:60010"]
ultipaConfig.hosts = ["192.168.1.85:60061", "192.168.1.87:60061", "192.168.1.88:60061"]
ultipaConfig.username = "<username>"
ultipaConfig.password = "<password>"
Conn = Connection.NewConnection(defaultConfig=ultipaConfig)
# Creates a new policy 'operator'
policy = Policy(
name="operator",
systemPrivileges=["SHOW_GRAPH","TRUNCATE"],
graphPrivileges={
"lcc": ["UPDATE","INSERT","DELETE","UPSERT"]
},
propertyPrivileges=PropertyPrivilege(
node=PropertyPrivilegeElement(
read=[["miniCircle", "account", "*"], ["miniCircle", "movie", "name"]],
write=[["lcc", "*", "*"]]
),
edge=PropertyPrivilegeElement(
read=[["*", "*", "*"]],
deny=[["miniCircle", "*", "*"]]
)
),
policies=['manager', "sales"]
)
response = Conn.createPolicy(policy)
print(response.status.code.name)