Veza Open Authorization API (OAA) SDK
Project description
Python SDK for Veza Open Authorization API
The oaaclient
package provides data models, methods and a command-line interface for using the Open Authorization API. You can use it to format and publish user, resource, and authorization metadata for processing by a Veza instance.
For example usage, please see the samples
directory. For more information on Veza visit https://www.veza.com.
What is OAA?
The Open Authorization API is used to submit authorization metadata for custom applications to a Veza instance for parsing and inclusion in the Entity Catalog.
- A typical OAA-based integration will use APIs to query the source application for information about users, resources, and permissions, along with other authorization entities such as groups and roles.
- This data payload is published to Veza as a JSON object. The
oaaclient
modules simplify building the required JSON model and pushing the payload to Veza via the REST API. - Any application or identity provider added using OAA becomes fully available for search, rules and alerts, and access reviews, similar to any officially-supported integration.
Using the SDK
The oaaclient
SDK includes the following components:
oaaclient.client
: Veza API communication (data provider management, payload push, etc.). Requires an API key for authentication.oaaclient.templates
: Classes for modeling and generating an OAA payload.oaaclient.utils
: Additional utility functions (icon encoding, etc.).
Sample Workflow
Create the Veza API connection and a new custom application:
from oaaclient.client import OAAClient
from oaaclient.templates import CustomApplication, OAAPermission
# creates a connection class to communicate with Veza
veza_con = OAAClient(url=veza_url, token=veza_api_key)
# creates a new Custom Application model
custom_app = CustomApplication(name="Sample App", application_type="sample")
Once the CustomApplication
class is instantiated, you can use the public methods to populate the new app with local users, groups, resources, and permissions metadata:
custom_app.add_custom_permission("owner", [OAAPermission.DataRead, OAAPermission.DataWrite])
jane = custom_app.add_local_user("jane", identities="jane@example.com")
resource1 = custom_app.add_resource(name="Resource 1", resource_type="thing")
jane.add_permission(permission="owner", resources=[resource1])
Once all identities, permissions and resources are modeled, the client connection handles the final push to Veza:
veza_con.push_application(provider, data_source_name, application_object=custom_app)
For more examples see the samples directory.
Command Line Use
The oaaclient can also be used as a command line tool for pushing completed OAA payloads to Veza for testing and debugging, without needing to make the API requests "by hand."
You will need the following JSON files:
-
provider.json
- must contain the provider name and template to use (application
oridp
).{ "name": "ProviderName", "custom_template": "application" }
-
auth.json
- defines the Veza host and API key to use{ "host": "https://demo.vezacloud.com", "token": "ZXlKaGJHY2lPaUpJ....." }
-
payload.json
- The complete OAA JSON body to submit. For full reference see the Veza documentation. This format must match the schema (template) selected inprovider.json
.
Once the above files are created, the payload can be pushed with the following command:
oaaclient --provider provider.json --auth auth.json payload.json
The client will read the files and push the payload to Veza. The client will automatically create any required custom provider and data sources.
Handling Errors
The OAAClient
class handles API connections to Veza. If there are errors connecting or the API returns errors
OAAClient
will raise an OAAClientError
exception. If the payload does not conform to the template requirements the
OAAClientError.details
will contain a list of any issues encountered.
try:
response = veza_con.push_application(provider_name=provider_name,
data_source_name=data_source_name,
application_object=custom_app,
)
if response.get("warnings"):
print("Push succeeded with warnings:")
for w in response["warnings"]:
print(w)
except OAAClientError as e:
print(f"Error: {e.error}: {e.message} ({e.status_code})", file=sys.stderr)
if hasattr(e, "details"):
for d in e.details:
print(d, file=sys.stderr)
Additional documentation
Since any given source application or service will have different methods for retrieving entities, authorization, and other required metadata, each OAA connector will be slightly different. You should consult the API documentation for your application when considering how you will source the information, and refer to existing Veza-supported OAA connectors for real-world examples.
Connector source code and oaaclient
modules are thoroughly annotated, for reference when building your own integrations.
For additional information on developing a custom OAA integration, please contact your Veza support team for access to the User Guide.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file oaaclient-1.1.9.tar.gz
.
File metadata
- Download URL: oaaclient-1.1.9.tar.gz
- Upload date:
- Size: 58.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbc5f12c28adabe88b7b1fe52162dbdcb97240f792eb305b72884a097b40c0a5 |
|
MD5 | 8b17c910a5ee693451a9c17823f40dc6 |
|
BLAKE2b-256 | efd3de9a00d6f540e52c7593b38a5f6c1442398f66ea54eba9451d04f84d3842 |
File details
Details for the file oaaclient-1.1.9-py3-none-any.whl
.
File metadata
- Download URL: oaaclient-1.1.9-py3-none-any.whl
- Upload date:
- Size: 37.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a5fa518192a1fab74b8e232d791c4b6142387d237250074fef981e6a24de68c |
|
MD5 | d77f75819da320dac8a6a2b1c302df61 |
|
BLAKE2b-256 | e142fd18c88550e96b86c1957800f16503da748a104f371d1e1b64aac2bd4a2b |