createResource
Creates a new resource.
Parameters
resource
- An object that contains the information about the new resource. The payload is defined below.
Payload
key
- A URL-friendly name of the resource (i.e: slug). You will be able to query later using this key instead of the id (UUID) of the resource.
name
- The name of the resource.
urn
- optional - The URN(Uniform Resource Name) of the resource.
description
- optional - An optional longer description of what this resource respresents in your system.
actions
- A actions definition block, typically contained within a resource type definition block. The actions represents the ways you can interact with a protected resource.
attributes
- optional - Attributes that each resource of this type defines, and can be used in your ABAC policies.
roles
- optional - Roles defined on this resource. The key is the role name, and the value contains the role properties such as granted permissions, base roles, etc.
relations
- optional - Relations to other resources. The key is the relation name, and the value is the destination resource.
{
"key": "key",
"name": "name",
"urn": "urn",
"description": "description",
"actions": {},
"attributes": {},
"roles": {},
"relations": {}
}
Implementation
response = await permit.api.create_resource(resource)