Client Bindings¶
Python Client¶
The pulp-deb-client package on PyPI provides bindings for all pulp_deb
REST API endpoints.
It is currently published daily and with every RC.
The pulpcore-client package on PyPI provides bindings for all pulpcore
REST API endpoints.
It is currently published daily and with every RC.
Ruby Client¶
The pulp_deb_client Ruby Gem on rubygems.org provides bindings for all pulp_deb
REST API endpoints.
It is currently published daily and with every RC.
The pulpcore_client Ruby Gem on rubygems.org provides bindings for all pulpcore
REST API endpoints.
It is currently published daily and with every RC.
Client in a Language of Your Choice¶
A client can be generated using Pulp's OpenAPI schema and any of the available OpenAPI generators.
Generating a client is a two step process:
- Download the OpenAPI schema for pulpcore and all installed plugins:
The OpenAPI schema for a specific plugin can be downloaded by specifying the plugin's module name as a GET parameter. For example for
curl -o api.json http://<pulp-hostname>:24817/pulp/api/v3/docs/api.json
pulp_deb
only endpoints use a query like this:curl -o api.json http://<pulp-hostname>:24817/pulp/api/v3/docs/api.json?plugin=pulp_deb
- Generate a client using OpenAPI generator:
The schema can then be used as input to the
openapi-generator-cli
. See try OpenAPI generator for documentation on getting started.