Pulp 3 API
Project description
pulpcore-client
Fetch, Upload, Organize, and Distribute Software Packages
This Python package is automatically generated by the OpenAPI Generator project:
- API version: v3
- Package version: 3.89.1
- Generator version: 7.14.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit https://pulpproject.org
Requirements.
Python 3.9+
Installation & Usage
pip install
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)
Then import the package:
import pulpcore.client.pulpcore
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import pulpcore.client.pulpcore
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import pulpcore.client.pulpcore
from pulpcore.client.pulpcore.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:24817
# See configuration.py for a list of all supported configuration parameters.
configuration = pulpcore.client.pulpcore.Configuration(
host = "http://localhost:24817"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure HTTP basic authorization: basicAuth
configuration = pulpcore.client.pulpcore.Configuration(
username = os.environ["USERNAME"],
password = os.environ["PASSWORD"]
)
# Configure API key authorization: cookieAuth
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
# Enter a context with an instance of the API client
with pulpcore.client.pulpcore.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pulpcore.client.pulpcore.AccessPoliciesApi(api_client)
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
customized = True # bool | Filter results where customized matches value (optional)
limit = 56 # int | Number of results to return per page. (optional)
offset = 56 # int | The initial index from which to return the results. (optional)
ordering = ['ordering_example'] # List[str] | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `creation_hooks` - Creation hooks * `-creation_hooks` - Creation hooks (descending) * `statements` - Statements * `-statements` - Statements (descending) * `viewset_name` - Viewset name * `-viewset_name` - Viewset name (descending) * `customized` - Customized * `-customized` - Customized (descending) * `queryset_scoping` - Queryset scoping * `-queryset_scoping` - Queryset scoping (descending) * `pk` - Pk * `-pk` - Pk (descending) (optional)
prn__in = ['prn__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
pulp_href__in = ['pulp_href__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
pulp_id__in = ['pulp_id__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
q = 'q_example' # str | Filter results by using NOT, AND and OR operations on other filters (optional)
viewset_name = 'viewset_name_example' # str | Filter results where viewset_name matches value (optional)
viewset_name__contains = 'viewset_name__contains_example' # str | Filter results where viewset_name contains value (optional)
viewset_name__icontains = 'viewset_name__icontains_example' # str | Filter results where viewset_name contains value (optional)
viewset_name__iexact = 'viewset_name__iexact_example' # str | Filter results where viewset_name matches value (optional)
viewset_name__in = ['viewset_name__in_example'] # List[str] | Filter results where viewset_name is in a comma-separated list of values (optional)
viewset_name__iregex = 'viewset_name__iregex_example' # str | Filter results where viewset_name matches regex value (optional)
viewset_name__istartswith = 'viewset_name__istartswith_example' # str | Filter results where viewset_name starts with value (optional)
viewset_name__regex = 'viewset_name__regex_example' # str | Filter results where viewset_name matches regex value (optional)
viewset_name__startswith = 'viewset_name__startswith_example' # str | Filter results where viewset_name starts with value (optional)
fields = ['fields_example'] # List[str] | A list of fields to include in the response. (optional)
exclude_fields = ['exclude_fields_example'] # List[str] | A list of fields to exclude from the response. (optional)
try:
# List access policys
api_response = api_instance.list(x_task_diagnostics=x_task_diagnostics, customized=customized, limit=limit, offset=offset, ordering=ordering, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, q=q, viewset_name=viewset_name, viewset_name__contains=viewset_name__contains, viewset_name__icontains=viewset_name__icontains, viewset_name__iexact=viewset_name__iexact, viewset_name__in=viewset_name__in, viewset_name__iregex=viewset_name__iregex, viewset_name__istartswith=viewset_name__istartswith, viewset_name__regex=viewset_name__regex, viewset_name__startswith=viewset_name__startswith, fields=fields, exclude_fields=exclude_fields)
print("The response of AccessPoliciesApi->list:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AccessPoliciesApi->list: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to http://localhost:24817
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AccessPoliciesApi | list | GET /pulp/api/v3/access_policies/ | List access policys |
| AccessPoliciesApi | partial_update | PATCH {access_policy_href} | Update an access policy |
| AccessPoliciesApi | read | GET {access_policy_href} | Inspect an access policy |
| AccessPoliciesApi | reset | POST {access_policy_href}reset/ | |
| AccessPoliciesApi | update | PUT {access_policy_href} | Update an access policy |
| ArtifactsApi | create | POST /pulp/api/v3/artifacts/ | Create an artifact |
| ArtifactsApi | delete | DELETE {artifact_href} | Delete an artifact |
| ArtifactsApi | list | GET /pulp/api/v3/artifacts/ | List artifacts |
| ArtifactsApi | read | GET {artifact_href} | Inspect an artifact |
| ContentApi | list | GET /pulp/api/v3/content/ | List content |
| ContentOpenpgpPublickeyApi | create | POST /pulp/api/v3/content/core/openpgp_publickey/ | Create an open pgp public key |
| ContentOpenpgpPublickeyApi | list | GET /pulp/api/v3/content/core/openpgp_publickey/ | List open pgp public keys |
| ContentOpenpgpPublickeyApi | read | GET {open_p_g_p_public_key_href} | Inspect an open pgp public key |
| ContentOpenpgpPublickeyApi | set_label | POST {open_p_g_p_public_key_href}set_label/ | Set a label |
| ContentOpenpgpPublickeyApi | unset_label | POST {open_p_g_p_public_key_href}unset_label/ | Unset a label |
| ContentOpenpgpPublicsubkeyApi | list | GET /pulp/api/v3/content/core/openpgp_publicsubkey/ | List open pgp public subkeys |
| ContentOpenpgpPublicsubkeyApi | read | GET {open_p_g_p_public_subkey_href} | Inspect an open pgp public subkey |
| ContentOpenpgpPublicsubkeyApi | set_label | POST {open_p_g_p_public_subkey_href}set_label/ | Set a label |
| ContentOpenpgpPublicsubkeyApi | unset_label | POST {open_p_g_p_public_subkey_href}unset_label/ | Unset a label |
| ContentOpenpgpSignatureApi | list | GET /pulp/api/v3/content/core/openpgp_signature/ | List open pgp signatures |
| ContentOpenpgpSignatureApi | read | GET {open_p_g_p_signature_href} | Inspect an open pgp signature |
| ContentOpenpgpSignatureApi | set_label | POST {open_p_g_p_signature_href}set_label/ | Set a label |
| ContentOpenpgpSignatureApi | unset_label | POST {open_p_g_p_signature_href}unset_label/ | Unset a label |
| ContentOpenpgpUserattributeApi | list | GET /pulp/api/v3/content/core/openpgp_userattribute/ | List open pgp user attributes |
| ContentOpenpgpUserattributeApi | read | GET {open_p_g_p_user_attribute_href} | Inspect an open pgp user attribute |
| ContentOpenpgpUserattributeApi | set_label | POST {open_p_g_p_user_attribute_href}set_label/ | Set a label |
| ContentOpenpgpUserattributeApi | unset_label | POST {open_p_g_p_user_attribute_href}unset_label/ | Unset a label |
| ContentOpenpgpUseridApi | list | GET /pulp/api/v3/content/core/openpgp_userid/ | List open pgp user ids |
| ContentOpenpgpUseridApi | read | GET {open_p_g_p_user_i_d_href} | Inspect an open pgp user id |
| ContentOpenpgpUseridApi | set_label | POST {open_p_g_p_user_i_d_href}set_label/ | Set a label |
| ContentOpenpgpUseridApi | unset_label | POST {open_p_g_p_user_i_d_href}unset_label/ | Unset a label |
| ContentguardsApi | list | GET /pulp/api/v3/contentguards/ | List content guards |
| ContentguardsCompositeApi | add_role | POST {composite_content_guard_href}add_role/ | Add a role |
| ContentguardsCompositeApi | create | POST /pulp/api/v3/contentguards/core/composite/ | Create a composite content guard |
| ContentguardsCompositeApi | delete | DELETE {composite_content_guard_href} | Delete a composite content guard |
| ContentguardsCompositeApi | list | GET /pulp/api/v3/contentguards/core/composite/ | List composite content guards |
| ContentguardsCompositeApi | list_roles | GET {composite_content_guard_href}list_roles/ | List roles |
| ContentguardsCompositeApi | my_permissions | GET {composite_content_guard_href}my_permissions/ | List user permissions |
| ContentguardsCompositeApi | partial_update | PATCH {composite_content_guard_href} | Update a composite content guard |
| ContentguardsCompositeApi | read | GET {composite_content_guard_href} | Inspect a composite content guard |
| ContentguardsCompositeApi | remove_role | POST {composite_content_guard_href}remove_role/ | Remove a role |
| ContentguardsCompositeApi | update | PUT {composite_content_guard_href} | Update a composite content guard |
| ContentguardsContentRedirectApi | add_role | POST {content_redirect_content_guard_href}add_role/ | Add a role |
| ContentguardsContentRedirectApi | create | POST /pulp/api/v3/contentguards/core/content_redirect/ | Create a content redirect content guard |
| ContentguardsContentRedirectApi | delete | DELETE {content_redirect_content_guard_href} | Delete a content redirect content guard |
| ContentguardsContentRedirectApi | list | GET /pulp/api/v3/contentguards/core/content_redirect/ | List content redirect content guards |
| ContentguardsContentRedirectApi | list_roles | GET {content_redirect_content_guard_href}list_roles/ | List roles |
| ContentguardsContentRedirectApi | my_permissions | GET {content_redirect_content_guard_href}my_permissions/ | List user permissions |
| ContentguardsContentRedirectApi | partial_update | PATCH {content_redirect_content_guard_href} | Update a content redirect content guard |
| ContentguardsContentRedirectApi | read | GET {content_redirect_content_guard_href} | Inspect a content redirect content guard |
| ContentguardsContentRedirectApi | remove_role | POST {content_redirect_content_guard_href}remove_role/ | Remove a role |
| ContentguardsContentRedirectApi | update | PUT {content_redirect_content_guard_href} | Update a content redirect content guard |
| ContentguardsHeaderApi | add_role | POST {header_content_guard_href}add_role/ | Add a role |
| ContentguardsHeaderApi | create | POST /pulp/api/v3/contentguards/core/header/ | Create a header content guard |
| ContentguardsHeaderApi | delete | DELETE {header_content_guard_href} | Delete a header content guard |
| ContentguardsHeaderApi | list | GET /pulp/api/v3/contentguards/core/header/ | List header content guards |
| ContentguardsHeaderApi | list_roles | GET {header_content_guard_href}list_roles/ | List roles |
| ContentguardsHeaderApi | my_permissions | GET {header_content_guard_href}my_permissions/ | List user permissions |
| ContentguardsHeaderApi | partial_update | PATCH {header_content_guard_href} | Update a header content guard |
| ContentguardsHeaderApi | read | GET {header_content_guard_href} | Inspect a header content guard |
| ContentguardsHeaderApi | remove_role | POST {header_content_guard_href}remove_role/ | Remove a role |
| ContentguardsHeaderApi | update | PUT {header_content_guard_href} | Update a header content guard |
| ContentguardsRbacApi | add_role | POST {r_b_a_c_content_guard_href}add_role/ | Add a role |
| ContentguardsRbacApi | create | POST /pulp/api/v3/contentguards/core/rbac/ | Create a rbac content guard |
| ContentguardsRbacApi | delete | DELETE {r_b_a_c_content_guard_href} | Delete a rbac content guard |
| ContentguardsRbacApi | list | GET /pulp/api/v3/contentguards/core/rbac/ | List rbac content guards |
| ContentguardsRbacApi | list_roles | GET {r_b_a_c_content_guard_href}list_roles/ | List roles |
| ContentguardsRbacApi | my_permissions | GET {r_b_a_c_content_guard_href}my_permissions/ | List user permissions |
| ContentguardsRbacApi | partial_update | PATCH {r_b_a_c_content_guard_href} | Update a rbac content guard |
| ContentguardsRbacApi | read | GET {r_b_a_c_content_guard_href} | Inspect a rbac content guard |
| ContentguardsRbacApi | remove_role | POST {r_b_a_c_content_guard_href}remove_role/ | Remove a role |
| ContentguardsRbacApi | update | PUT {r_b_a_c_content_guard_href} | Update a rbac content guard |
| DistributionsApi | list | GET /pulp/api/v3/distributions/ | List distributions |
| DistributionsArtifactsApi | list | GET /pulp/api/v3/distributions/core/artifacts/ | List artifact distributions |
| DistributionsArtifactsApi | read | GET {artifact_distribution_href} | Inspect an artifact distribution |
| DistributionsOpenpgpApi | create | POST /pulp/api/v3/distributions/core/openpgp/ | Create an open pgp distribution |
| DistributionsOpenpgpApi | delete | DELETE {open_p_g_p_distribution_href} | Delete an open pgp distribution |
| DistributionsOpenpgpApi | list | GET /pulp/api/v3/distributions/core/openpgp/ | List open pgp distributions |
| DistributionsOpenpgpApi | partial_update | PATCH {open_p_g_p_distribution_href} | Update an open pgp distribution |
| DistributionsOpenpgpApi | read | GET {open_p_g_p_distribution_href} | Inspect an open pgp distribution |
| DistributionsOpenpgpApi | set_label | POST {open_p_g_p_distribution_href}set_label/ | Set a label |
| DistributionsOpenpgpApi | unset_label | POST {open_p_g_p_distribution_href}unset_label/ | Unset a label |
| DistributionsOpenpgpApi | update | PUT {open_p_g_p_distribution_href} | Update an open pgp distribution |
| DomainsApi | create | POST /pulp/api/v3/domains/ | Create a domain |
| DomainsApi | delete | DELETE {domain_href} | Delete a domain |
| DomainsApi | list | GET /pulp/api/v3/domains/ | List domains |
| DomainsApi | migrate | POST /pulp/api/v3/domains/migrate/ | Migrate storage backend |
| DomainsApi | partial_update | PATCH {domain_href} | Update a domain |
| DomainsApi | read | GET {domain_href} | Inspect a domain |
| DomainsApi | set_label | POST {domain_href}set_label/ | Set a label |
| DomainsApi | unset_label | POST {domain_href}unset_label/ | Unset a label |
| DomainsApi | update | PUT {domain_href} | Update a domain |
| ExportersFilesystemApi | create | POST /pulp/api/v3/exporters/core/filesystem/ | Create a filesystem exporter |
| ExportersFilesystemApi | delete | DELETE {filesystem_exporter_href} | Delete a filesystem exporter |
| ExportersFilesystemApi | list | GET /pulp/api/v3/exporters/core/filesystem/ | List filesystem exporters |
| ExportersFilesystemApi | partial_update | PATCH {filesystem_exporter_href} | Update a filesystem exporter |
| ExportersFilesystemApi | read | GET {filesystem_exporter_href} | Inspect a filesystem exporter |
| ExportersFilesystemApi | update | PUT {filesystem_exporter_href} | Update a filesystem exporter |
| ExportersFilesystemExportsApi | create | POST {filesystem_exporter_href}exports/ | Create a filesystem export |
| ExportersFilesystemExportsApi | delete | DELETE {filesystem_filesystem_export_href} | Delete a filesystem export |
| ExportersFilesystemExportsApi | list | GET {filesystem_exporter_href}exports/ | List filesystem exports |
| ExportersFilesystemExportsApi | read | GET {filesystem_filesystem_export_href} | Inspect a filesystem export |
| ExportersPulpApi | create | POST /pulp/api/v3/exporters/core/pulp/ | Create a pulp exporter |
| ExportersPulpApi | delete | DELETE {pulp_exporter_href} | Delete a pulp exporter |
| ExportersPulpApi | list | GET /pulp/api/v3/exporters/core/pulp/ | List pulp exporters |
| ExportersPulpApi | partial_update | PATCH {pulp_exporter_href} | Update a pulp exporter |
| ExportersPulpApi | read | GET {pulp_exporter_href} | Inspect a pulp exporter |
| ExportersPulpApi | update | PUT {pulp_exporter_href} | Update a pulp exporter |
| ExportersPulpExportsApi | create | POST {pulp_exporter_href}exports/ | Create a pulp export |
| ExportersPulpExportsApi | delete | DELETE {pulp_pulp_export_href} | Delete a pulp export |
| ExportersPulpExportsApi | list | GET {pulp_exporter_href}exports/ | List pulp exports |
| ExportersPulpExportsApi | read | GET {pulp_pulp_export_href} | Inspect a pulp export |
| GroupsApi | add_role | POST {group_href}add_role/ | Add a role |
| GroupsApi | create | POST /pulp/api/v3/groups/ | Create a group |
| GroupsApi | delete | DELETE {group_href} | Delete a group |
| GroupsApi | list | GET /pulp/api/v3/groups/ | List groups |
| GroupsApi | list_roles | GET {group_href}list_roles/ | List roles |
| GroupsApi | my_permissions | GET {group_href}my_permissions/ | List user permissions |
| GroupsApi | partial_update | PATCH {group_href} | Update a group |
| GroupsApi | read | GET {group_href} | Inspect a group |
| GroupsApi | remove_role | POST {group_href}remove_role/ | Remove a role |
| GroupsApi | update | PUT {group_href} | Update a group |
| GroupsRolesApi | create | POST {group_href}roles/ | Create a group role |
| GroupsRolesApi | delete | DELETE {groups_group_role_href} | Delete a group role |
| GroupsRolesApi | list | GET {group_href}roles/ | List group roles |
| GroupsRolesApi | read | GET {groups_group_role_href} | Inspect a group role |
| GroupsUsersApi | create | POST {group_href}users/ | Create an user |
| GroupsUsersApi | delete | DELETE {groups_user_href} | Delete an user |
| GroupsUsersApi | list | GET {group_href}users/ | List users |
| ImportersPulpApi | create | POST /pulp/api/v3/importers/core/pulp/ | Create a pulp importer |
| ImportersPulpApi | delete | DELETE {pulp_importer_href} | Delete a pulp importer |
| ImportersPulpApi | list | GET /pulp/api/v3/importers/core/pulp/ | List pulp importers |
| ImportersPulpApi | partial_update | PATCH {pulp_importer_href} | Update a pulp importer |
| ImportersPulpApi | read | GET {pulp_importer_href} | Inspect a pulp importer |
| ImportersPulpApi | update | PUT {pulp_importer_href} | Update a pulp importer |
| ImportersPulpImportCheckApi | pulp_import_check_post | POST /pulp/api/v3/importers/core/pulp/import-check/ | Validate the parameters to be used for a PulpImport call |
| ImportersPulpImportsApi | create | POST {pulp_importer_href}imports/ | Create a pulp import |
| ImportersPulpImportsApi | delete | DELETE {pulp_pulp_import_href} | Delete a pulp import |
| ImportersPulpImportsApi | list | GET {pulp_importer_href}imports/ | List pulp imports |
| ImportersPulpImportsApi | read | GET {pulp_pulp_import_href} | Inspect a pulp import |
| LivezApi | livez_read | GET /pulp/api/v3/livez/ | Inspect liveness of Pulp's REST API. |
| LoginApi | login | POST /pulp/api/v3/login/ | |
| LoginApi | login_read | GET /pulp/api/v3/login/ | |
| LoginApi | logout | DELETE /pulp/api/v3/login/ | |
| OrphansApi | delete | DELETE /pulp/api/v3/orphans/ | Delete orphans |
| OrphansCleanupApi | cleanup | POST /pulp/api/v3/orphans/cleanup/ | |
| PublicationsApi | list | GET /pulp/api/v3/publications/ | List publications |
| RemotesApi | list | GET /pulp/api/v3/remotes/ | List remotes |
| RepairApi | post | POST /pulp/api/v3/repair/ | Repair Artifact Storage |
| RepositoriesApi | list | GET /pulp/api/v3/repositories/ | List repositories |
| RepositoriesOpenpgpKeyringApi | add_role | POST {open_p_g_p_keyring_href}add_role/ | Add a role |
| RepositoriesOpenpgpKeyringApi | create | POST /pulp/api/v3/repositories/core/openpgp_keyring/ | Create an open pgp keyring |
| RepositoriesOpenpgpKeyringApi | delete | DELETE {open_p_g_p_keyring_href} | Delete an open pgp keyring |
| RepositoriesOpenpgpKeyringApi | list | GET /pulp/api/v3/repositories/core/openpgp_keyring/ | List open pgp keyrings |
| RepositoriesOpenpgpKeyringApi | list_roles | GET {open_p_g_p_keyring_href}list_roles/ | List roles |
| RepositoriesOpenpgpKeyringApi | modify | POST {open_p_g_p_keyring_href}modify/ | Modify Repository Content |
| RepositoriesOpenpgpKeyringApi | my_permissions | GET {open_p_g_p_keyring_href}my_permissions/ | List user permissions |
| RepositoriesOpenpgpKeyringApi | partial_update | PATCH {open_p_g_p_keyring_href} | Update an open pgp keyring |
| RepositoriesOpenpgpKeyringApi | read | GET {open_p_g_p_keyring_href} | Inspect an open pgp keyring |
| RepositoriesOpenpgpKeyringApi | remove_role | POST {open_p_g_p_keyring_href}remove_role/ | Remove a role |
| RepositoriesOpenpgpKeyringApi | set_label | POST {open_p_g_p_keyring_href}set_label/ | Set a label |
| RepositoriesOpenpgpKeyringApi | unset_label | POST {open_p_g_p_keyring_href}unset_label/ | Unset a label |
| RepositoriesOpenpgpKeyringApi | update | PUT {open_p_g_p_keyring_href} | Update an open pgp keyring |
| RepositoriesReclaimSpaceApi | reclaim | POST /pulp/api/v3/repositories/reclaim_space/ | |
| RepositoryVersionsApi | list | GET /pulp/api/v3/repository_versions/ | List repository versions |
| RolesApi | create | POST /pulp/api/v3/roles/ | Create a role |
| RolesApi | delete | DELETE {role_href} | Delete a role |
| RolesApi | list | GET /pulp/api/v3/roles/ | List roles |
| RolesApi | partial_update | PATCH {role_href} | Update a role |
| RolesApi | read | GET {role_href} | Inspect a role |
| RolesApi | update | PUT {role_href} | Update a role |
| SigningServicesApi | list | GET /pulp/api/v3/signing-services/ | List signing services |
| SigningServicesApi | read | GET {signing_service_href} | Inspect a signing service |
| StatusApi | status_read | GET /pulp/api/v3/status/ | Inspect status of Pulp |
| TaskGroupsApi | list | GET /pulp/api/v3/task-groups/ | List task groups |
| TaskGroupsApi | read | GET {task_group_href} | Inspect a task group |
| TaskGroupsApi | task_groups_cancel | PATCH {task_group_href} | Cancel a task group |
| TaskSchedulesApi | add_role | POST {task_schedule_href}add_role/ | Add a role |
| TaskSchedulesApi | list | GET /pulp/api/v3/task-schedules/ | List task schedules |
| TaskSchedulesApi | list_roles | GET {task_schedule_href}list_roles/ | List roles |
| TaskSchedulesApi | my_permissions | GET {task_schedule_href}my_permissions/ | List user permissions |
| TaskSchedulesApi | read | GET {task_schedule_href} | Inspect a task schedule |
| TaskSchedulesApi | remove_role | POST {task_schedule_href}remove_role/ | Remove a role |
| TasksApi | add_role | POST {task_href}add_role/ | Add a role |
| TasksApi | delete | DELETE {task_href} | Delete a task |
| TasksApi | list | GET /pulp/api/v3/tasks/ | List tasks |
| TasksApi | list_roles | GET {task_href}list_roles/ | List roles |
| TasksApi | my_permissions | GET {task_href}my_permissions/ | List user permissions |
| TasksApi | profile_artifacts | GET {task_href}profile_artifacts/ | Fetch downloadable links for profile artifacts |
| TasksApi | purge | POST /pulp/api/v3/tasks/purge/ | Purge Completed Tasks |
| TasksApi | read | GET {task_href} | Inspect a task |
| TasksApi | remove_role | POST {task_href}remove_role/ | Remove a role |
| TasksApi | tasks_cancel | PATCH {task_href} | Cancel a task |
| UploadsApi | add_role | POST {upload_href}add_role/ | Add a role |
| UploadsApi | commit | POST {upload_href}commit/ | Finish an Upload |
| UploadsApi | create | POST /pulp/api/v3/uploads/ | Create an upload |
| UploadsApi | delete | DELETE {upload_href} | Delete an upload |
| UploadsApi | list | GET /pulp/api/v3/uploads/ | List uploads |
| UploadsApi | list_roles | GET {upload_href}list_roles/ | List roles |
| UploadsApi | my_permissions | GET {upload_href}my_permissions/ | List user permissions |
| UploadsApi | read | GET {upload_href} | Inspect an upload |
| UploadsApi | remove_role | POST {upload_href}remove_role/ | Remove a role |
| UploadsApi | update | PUT {upload_href} | Upload a file chunk |
| UpstreamPulpsApi | add_role | POST {upstream_pulp_href}add_role/ | Add a role |
| UpstreamPulpsApi | create | POST /pulp/api/v3/upstream-pulps/ | Create an upstream pulp |
| UpstreamPulpsApi | delete | DELETE {upstream_pulp_href} | Delete an upstream pulp |
| UpstreamPulpsApi | list | GET /pulp/api/v3/upstream-pulps/ | List upstream pulps |
| UpstreamPulpsApi | list_roles | GET {upstream_pulp_href}list_roles/ | List roles |
| UpstreamPulpsApi | my_permissions | GET {upstream_pulp_href}my_permissions/ | List user permissions |
| UpstreamPulpsApi | partial_update | PATCH {upstream_pulp_href} | Update an upstream pulp |
| UpstreamPulpsApi | read | GET {upstream_pulp_href} | Inspect an upstream pulp |
| UpstreamPulpsApi | remove_role | POST {upstream_pulp_href}remove_role/ | Remove a role |
| UpstreamPulpsApi | replicate | POST {upstream_pulp_href}replicate/ | Replicate |
| UpstreamPulpsApi | update | PUT {upstream_pulp_href} | Update an upstream pulp |
| UsersApi | create | POST /pulp/api/v3/users/ | Create an user |
| UsersApi | delete | DELETE {auth_user_href} | Delete an user |
| UsersApi | list | GET /pulp/api/v3/users/ | List users |
| UsersApi | partial_update | PATCH {auth_user_href} | Update an user |
| UsersApi | read | GET {auth_user_href} | Inspect an user |
| UsersApi | update | PUT {auth_user_href} | Update an user |
| UsersRolesApi | create | POST {auth_user_href}roles/ | Create an user role |
| UsersRolesApi | delete | DELETE {auth_users_user_role_href} | Delete an user role |
| UsersRolesApi | list | GET {auth_user_href}roles/ | List user roles |
| UsersRolesApi | read | GET {auth_users_user_role_href} | Inspect an user role |
| VulnReportApi | delete | DELETE {vulnerability_report_href} | Delete a vulnerability report |
| VulnReportApi | list | GET /pulp/api/v3/vuln_report/ | List vulnerability reports |
| VulnReportApi | read | GET {vulnerability_report_href} | Inspect a vulnerability report |
| WorkersApi | list | GET /pulp/api/v3/workers/ | List app statuss |
| WorkersApi | read | GET {worker_href} | Inspect an app status |
Documentation For Models
- AccessPolicy
- AccessPolicyResponse
- AppStatusResponse
- ArtifactDistributionResponse
- ArtifactResponse
- AsyncOperationResponse
- CompositeContentGuard
- CompositeContentGuardResponse
- ContentGuardResponse
- ContentRedirectContentGuard
- ContentRedirectContentGuardResponse
- ContentSettingsResponse
- ContentSummaryResponse
- DatabaseConnectionResponse
- DistributionResponse
- Domain
- DomainBackendMigrator
- DomainResponse
- EvaluationResponse
- FilesystemExport
- FilesystemExportResponse
- FilesystemExporter
- FilesystemExporterResponse
- GenericRemoteResponse
- GenericRemoteResponseHiddenFieldsInner
- GenericRemoteResponsePolicyEnum
- Group
- GroupProgressReportResponse
- GroupResponse
- GroupRole
- GroupRoleResponse
- GroupUser
- GroupUserResponse
- HeaderContentGuard
- HeaderContentGuardResponse
- ImportResponse
- LoginResponse
- MethodEnum
- MinimalTaskResponse
- MultipleArtifactContentResponse
- MyPermissionsResponse
- NestedOpenPGPPublicSubkey
- NestedOpenPGPPublicSubkeyResponse
- NestedOpenPGPSignature
- NestedOpenPGPSignatureResponse
- NestedOpenPGPUserAttribute
- NestedOpenPGPUserAttributeResponse
- NestedOpenPGPUserID
- NestedOpenPGPUserIDResponse
- NestedRole
- NestedRoleResponse
- ObjectRolesResponse
- OpenPGPDistribution
- OpenPGPDistributionResponse
- OpenPGPKeyring
- OpenPGPKeyringResponse
- OpenPGPPublicKeyResponse
- OpenPGPPublicSubkeyResponse
- OpenPGPSignatureResponse
- OpenPGPUserAttributeResponse
- OpenPGPUserIDResponse
- OrphansCleanup
- PaginatedAccessPolicyResponseList
- PaginatedArtifactDistributionResponseList
- PaginatedArtifactResponseList
- PaginatedCompositeContentGuardResponseList
- PaginatedContentGuardResponseList
- PaginatedContentRedirectContentGuardResponseList
- PaginatedDistributionResponseList
- PaginatedDomainResponseList
- PaginatedFilesystemExportResponseList
- PaginatedFilesystemExporterResponseList
- PaginatedGenericRemoteResponseList
- PaginatedGroupResponseList
- PaginatedGroupRoleResponseList
- PaginatedGroupUserResponseList
- PaginatedHeaderContentGuardResponseList
- PaginatedImportResponseList
- PaginatedMultipleArtifactContentResponseList
- PaginatedOpenPGPDistributionResponseList
- PaginatedOpenPGPKeyringResponseList
- PaginatedOpenPGPPublicKeyResponseList
- PaginatedOpenPGPPublicSubkeyResponseList
- PaginatedOpenPGPSignatureResponseList
- PaginatedOpenPGPUserAttributeResponseList
- PaginatedOpenPGPUserIDResponseList
- PaginatedPublicationResponseList
- PaginatedPulpExportResponseList
- PaginatedPulpExporterResponseList
- PaginatedPulpImporterResponseList
- PaginatedRBACContentGuardResponseList
- PaginatedRepositoryResponseList
- PaginatedRepositoryVersionResponseList
- PaginatedRoleResponseList
- PaginatedSigningServiceResponseList
- PaginatedTaskGroupResponseList
- PaginatedTaskResponseList
- PaginatedTaskScheduleResponseList
- PaginatedUploadResponseList
- PaginatedUpstreamPulpResponseList
- PaginatedUserResponseList
- PaginatedUserRoleResponseList
- PaginatedVulnerabilityReportResponseList
- PaginatedWorkerResponseList
- PatchedAccessPolicy
- PatchedCompositeContentGuard
- PatchedContentRedirectContentGuard
- PatchedDomain
- PatchedFilesystemExporter
- PatchedGroup
- PatchedHeaderContentGuard
- PatchedOpenPGPDistribution
- PatchedOpenPGPKeyring
- PatchedPulpExporter
- PatchedPulpImporter
- PatchedRBACContentGuard
- PatchedRole
- PatchedTaskCancel
- PatchedUpstreamPulp
- PatchedUser
- Policy357Enum
- ProfileArtifactResponse
- ProgressReportResponse
- PublicationResponse
- PulpExport
- PulpExportResponse
- PulpExporter
- PulpExporterResponse
- PulpImport
- PulpImportCheck
- PulpImportCheckResponse
- PulpImporter
- PulpImporterResponse
- Purge
- RBACContentGuard
- RBACContentGuardResponse
- ReclaimSpace
- RedisConnectionResponse
- Repair
- RepositoryAddRemoveContent
- RepositoryResponse
- RepositoryVersionResponse
- Role
- RoleResponse
- SetLabel
- SetLabelResponse
- SigningServiceResponse
- StatesEnum
- StatusResponse
- StorageClassEnum
- StorageResponse
- TaskGroupOperationResponse
- TaskGroupResponse
- TaskResponse
- TaskScheduleResponse
- UnsetLabel
- UnsetLabelResponse
- Upload
- UploadChunkResponse
- UploadCommit
- UploadDetailResponse
- UploadResponse
- UpstreamPulp
- UpstreamPulpResponse
- User
- UserGroup
- UserGroupResponse
- UserResponse
- UserRole
- UserRoleResponse
- VersionResponse
- VulnerabilityReportResponse
- WorkerResponse
Documentation For Authorization
Authentication schemes defined for the API:
basicAuth
- Type: HTTP basic authentication
cookieAuth
- Type: API key
- API key parameter name: sessionid
- Location:
Author
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pulpcore-client-3.89.1.tar.gz.
File metadata
- Download URL: pulpcore-client-3.89.1.tar.gz
- Upload date:
- Size: 268.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8739df6167ed9b8deb452df623dbbf43e256355cd1e353f2ff468cd98e433e78
|
|
| MD5 |
9918c0a7cc3149de3b02f036150e2d33
|
|
| BLAKE2b-256 |
244ea7e9f882d606198edc5cb669b39100584c83c36d3c443dba37d9d327b63a
|
File details
Details for the file pulpcore_client-3.89.1-py3-none-any.whl.
File metadata
- Download URL: pulpcore_client-3.89.1-py3-none-any.whl
- Upload date:
- Size: 527.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f893d78d07ecdbc2fcf3b8d1bee8efecaf52f8b20a4916bfcae000921f9f2277
|
|
| MD5 |
8fee92541b8f65985aa5ddc7cbf0da23
|
|
| BLAKE2b-256 |
7d7fd54a73a39f6deb9db6a1f834d8aac3bc48eafb84ddd99bac871b3060f8df
|