Pulp 3 API
Project description
pulp_file-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.103.2
- 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.pulp_file
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.pulp_file
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import pulpcore.client.pulp_file
from pulpcore.client.pulp_file.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.pulp_file.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.pulp_file.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.pulp_file.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pulpcore.client.pulp_file.AcsFileApi(api_client)
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # str |
nested_role = pulpcore.client.pulp_file.NestedRole() # NestedRole |
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
try:
# Add a role
api_response = api_instance.add_role(file_file_alternate_content_source_href, nested_role, x_task_diagnostics=x_task_diagnostics)
print("The response of AcsFileApi->add_role:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AcsFileApi->add_role: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to http://localhost:24817
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AcsFileApi | add_role | POST {file_file_alternate_content_source_href}add_role/ | Add a role |
| AcsFileApi | create | POST /pulp/api/v3/acs/file/file/ | Create a file alternate content source |
| AcsFileApi | delete | DELETE {file_file_alternate_content_source_href} | Delete a file alternate content source |
| AcsFileApi | list | GET /pulp/api/v3/acs/file/file/ | List file alternate content sources |
| AcsFileApi | list_roles | GET {file_file_alternate_content_source_href}list_roles/ | List roles |
| AcsFileApi | my_permissions | GET {file_file_alternate_content_source_href}my_permissions/ | List user permissions |
| AcsFileApi | partial_update | PATCH {file_file_alternate_content_source_href} | Update a file alternate content source |
| AcsFileApi | read | GET {file_file_alternate_content_source_href} | Inspect a file alternate content source |
| AcsFileApi | refresh | POST {file_file_alternate_content_source_href}refresh/ | Refresh metadata |
| AcsFileApi | remove_role | POST {file_file_alternate_content_source_href}remove_role/ | Remove a role |
| AcsFileApi | update | PUT {file_file_alternate_content_source_href} | Update a file alternate content source |
| ContentFilesApi | create | POST /pulp/api/v3/content/file/files/ | Create a file content |
| ContentFilesApi | list | GET /pulp/api/v3/content/file/files/ | List file contents |
| ContentFilesApi | read | GET {file_file_content_href} | Inspect a file content |
| ContentFilesApi | set_label | POST {file_file_content_href}set_label/ | Set a label |
| ContentFilesApi | unset_label | POST {file_file_content_href}unset_label/ | Unset a label |
| ContentFilesApi | upload | POST /pulp/api/v3/content/file/files/upload/ | Upload a File synchronously. |
| DistributionsFileApi | add_role | POST {file_file_distribution_href}add_role/ | Add a role |
| DistributionsFileApi | create | POST /pulp/api/v3/distributions/file/file/ | Create a file distribution |
| DistributionsFileApi | delete | DELETE {file_file_distribution_href} | Delete a file distribution |
| DistributionsFileApi | list | GET /pulp/api/v3/distributions/file/file/ | List file distributions |
| DistributionsFileApi | list_roles | GET {file_file_distribution_href}list_roles/ | List roles |
| DistributionsFileApi | my_permissions | GET {file_file_distribution_href}my_permissions/ | List user permissions |
| DistributionsFileApi | partial_update | PATCH {file_file_distribution_href} | Update a file distribution |
| DistributionsFileApi | read | GET {file_file_distribution_href} | Inspect a file distribution |
| DistributionsFileApi | remove_role | POST {file_file_distribution_href}remove_role/ | Remove a role |
| DistributionsFileApi | set_label | POST {file_file_distribution_href}set_label/ | Set a label |
| DistributionsFileApi | unset_label | POST {file_file_distribution_href}unset_label/ | Unset a label |
| DistributionsFileApi | update | PUT {file_file_distribution_href} | Update a file distribution |
| PublicationsFileApi | add_role | POST {file_file_publication_href}add_role/ | Add a role |
| PublicationsFileApi | create | POST /pulp/api/v3/publications/file/file/ | Create a file publication |
| PublicationsFileApi | delete | DELETE {file_file_publication_href} | Delete a file publication |
| PublicationsFileApi | list | GET /pulp/api/v3/publications/file/file/ | List file publications |
| PublicationsFileApi | list_roles | GET {file_file_publication_href}list_roles/ | List roles |
| PublicationsFileApi | my_permissions | GET {file_file_publication_href}my_permissions/ | List user permissions |
| PublicationsFileApi | read | GET {file_file_publication_href} | Inspect a file publication |
| PublicationsFileApi | remove_role | POST {file_file_publication_href}remove_role/ | Remove a role |
| RemotesFileApi | add_role | POST {file_file_remote_href}add_role/ | Add a role |
| RemotesFileApi | create | POST /pulp/api/v3/remotes/file/file/ | Create a file remote |
| RemotesFileApi | delete | DELETE {file_file_remote_href} | Delete a file remote |
| RemotesFileApi | list | GET /pulp/api/v3/remotes/file/file/ | List file remotes |
| RemotesFileApi | list_roles | GET {file_file_remote_href}list_roles/ | List roles |
| RemotesFileApi | my_permissions | GET {file_file_remote_href}my_permissions/ | List user permissions |
| RemotesFileApi | partial_update | PATCH {file_file_remote_href} | Update a file remote |
| RemotesFileApi | read | GET {file_file_remote_href} | Inspect a file remote |
| RemotesFileApi | remove_role | POST {file_file_remote_href}remove_role/ | Remove a role |
| RemotesFileApi | set_label | POST {file_file_remote_href}set_label/ | Set a label |
| RemotesFileApi | unset_label | POST {file_file_remote_href}unset_label/ | Unset a label |
| RemotesFileApi | update | PUT {file_file_remote_href} | Update a file remote |
| RepositoriesFileApi | add_role | POST {file_file_repository_href}add_role/ | Add a role |
| RepositoriesFileApi | create | POST /pulp/api/v3/repositories/file/file/ | Create a file repository |
| RepositoriesFileApi | delete | DELETE {file_file_repository_href} | Delete a file repository |
| RepositoriesFileApi | list | GET /pulp/api/v3/repositories/file/file/ | List file repositorys |
| RepositoriesFileApi | list_roles | GET {file_file_repository_href}list_roles/ | List roles |
| RepositoriesFileApi | modify | POST {file_file_repository_href}modify/ | Modify Repository Content |
| RepositoriesFileApi | my_permissions | GET {file_file_repository_href}my_permissions/ | List user permissions |
| RepositoriesFileApi | partial_update | PATCH {file_file_repository_href} | Update a file repository |
| RepositoriesFileApi | read | GET {file_file_repository_href} | Inspect a file repository |
| RepositoriesFileApi | remove_role | POST {file_file_repository_href}remove_role/ | Remove a role |
| RepositoriesFileApi | set_label | POST {file_file_repository_href}set_label/ | Set a label |
| RepositoriesFileApi | sync | POST {file_file_repository_href}sync/ | Sync from a remote |
| RepositoriesFileApi | unset_label | POST {file_file_repository_href}unset_label/ | Unset a label |
| RepositoriesFileApi | update | PUT {file_file_repository_href} | Update a file repository |
| RepositoriesFileVersionsApi | delete | DELETE {file_file_repository_version_href} | Delete a repository version |
| RepositoriesFileVersionsApi | list | GET {file_file_repository_href}versions/ | List repository versions |
| RepositoriesFileVersionsApi | read | GET {file_file_repository_version_href} | Inspect a repository version |
| RepositoriesFileVersionsApi | repair | POST {file_file_repository_version_href}repair/ |
Documentation For Models
- AsyncOperationResponse
- ContentSummaryResponse
- FileContentUploadResponse
- FileFileAlternateContentSource
- FileFileAlternateContentSourceResponse
- FileFileContentResponse
- FileFileDistribution
- FileFileDistributionResponse
- FileFilePublication
- FileFilePublicationResponse
- FileFileRemote
- FileFileRemoteResponse
- FileFileRemoteResponseHiddenFieldsInner
- FileFileRepository
- FileFileRepositoryResponse
- MyPermissionsResponse
- NestedRole
- NestedRoleResponse
- ObjectRolesResponse
- PaginatedRepositoryVersionResponseList
- PaginatedfileFileAlternateContentSourceResponseList
- PaginatedfileFileContentResponseList
- PaginatedfileFileDistributionResponseList
- PaginatedfileFilePublicationResponseList
- PaginatedfileFileRemoteResponseList
- PaginatedfileFileRepositoryResponseList
- PatchedfileFileAlternateContentSource
- PatchedfileFileDistribution
- PatchedfileFileRemote
- PatchedfileFileRepository
- PolicyEnum
- RemoteNetworkConfig
- RemoteNetworkConfigResponse
- Repair
- RepositoryAddRemoveContent
- RepositorySyncURL
- RepositoryVersionResponse
- SetLabel
- SetLabelResponse
- TaskGroupOperationResponse
- UnsetLabel
- UnsetLabelResponse
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 pulp_file_client-3.103.2.tar.gz.
File metadata
- Download URL: pulp_file_client-3.103.2.tar.gz
- Upload date:
- Size: 82.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6a0c18bc369b2c6ac1b813eb735594f5731de3ee1271af1c8801263eeee0d74
|
|
| MD5 |
31711a9459deac384a9971b195918ce0
|
|
| BLAKE2b-256 |
f592c29ae8ca2a7cd5e24a4f992951f1597df59f234161e4db365f0cee5070e2
|
Provenance
The following attestation bundles were made for pulp_file_client-3.103.2.tar.gz:
Publisher:
publish.yml on pulp/pulpcore
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pulp_file_client-3.103.2.tar.gz -
Subject digest:
e6a0c18bc369b2c6ac1b813eb735594f5731de3ee1271af1c8801263eeee0d74 - Sigstore transparency entry: 925534942
- Sigstore integration time:
-
Permalink:
pulp/pulpcore@37aa6791eee21eef974d3e7a62d0a53367a865cc -
Branch / Tag:
refs/tags/3.103.2 - Owner: https://github.com/pulp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@37aa6791eee21eef974d3e7a62d0a53367a865cc -
Trigger Event:
push
-
Statement type:
File details
Details for the file pulp_file_client-3.103.2-py3-none-any.whl.
File metadata
- Download URL: pulp_file_client-3.103.2-py3-none-any.whl
- Upload date:
- Size: 143.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4487208c821c602091f6fc3de1265976ef6938a5f7375b3177bdc72a98d1629
|
|
| MD5 |
b79bcda5f8c7bc324c0f3f4a7741c107
|
|
| BLAKE2b-256 |
3f46efef89a7a04a5d48640b15d53018fd38c8f694fc12f492b214f5b6b2ea18
|
Provenance
The following attestation bundles were made for pulp_file_client-3.103.2-py3-none-any.whl:
Publisher:
publish.yml on pulp/pulpcore
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pulp_file_client-3.103.2-py3-none-any.whl -
Subject digest:
f4487208c821c602091f6fc3de1265976ef6938a5f7375b3177bdc72a98d1629 - Sigstore transparency entry: 925534961
- Sigstore integration time:
-
Permalink:
pulp/pulpcore@37aa6791eee21eef974d3e7a62d0a53367a865cc -
Branch / Tag:
refs/tags/3.103.2 - Owner: https://github.com/pulp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@37aa6791eee21eef974d3e7a62d0a53367a865cc -
Trigger Event:
push
-
Statement type: