Skip to main content

pulp_maven-client

Fetch, Upload, Organize, and Distribute Software Packages

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: v3
  • Package version: 0.25.0
  • Generator version: 7.19.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_maven

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_maven

Tests

Execute pytest to run the tests.

Getting Started

Please follow the installation procedure and then run the following:

import pulpcore.client.pulp_maven
from pulpcore.client.pulp_maven.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_maven.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_maven.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_maven.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = pulpcore.client.pulp_maven.ContentArtifactApi(api_client)
    relative_path = 'relative_path_example' # str | Path where the artifact is located relative to distributions base_path
    x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
    repository = 'repository_example' # str | A URI of a repository the new content unit should be associated with. (optional)
    overwrite = True # bool | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true. (optional)
    pulp_labels = None # Dict[str, Optional[str]] | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. (optional)
    artifact = 'artifact_example' # str | Artifact file representing the physical content (optional)
    file = None # bytearray | An uploaded file that may be turned into the content unit. (optional)
    upload = 'upload_example' # str | An uncommitted upload that may be turned into the content unit. (optional)
    file_url = 'file_url_example' # str | A url that Pulp can download and turn into the content unit. (optional)
    downloader_config = pulpcore.client.pulp_maven.RemoteNetworkConfig() # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. (optional)

    try:
        # Create a maven artifact
        api_response = api_instance.create(relative_path, x_task_diagnostics=x_task_diagnostics, repository=repository, overwrite=overwrite, pulp_labels=pulp_labels, artifact=artifact, file=file, upload=upload, file_url=file_url, downloader_config=downloader_config)
        print("The response of ContentArtifactApi->create:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling ContentArtifactApi->create: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to http://localhost:24817

Class Method HTTP request Description
ContentArtifactApi create POST /pulp/api/v3/content/maven/artifact/ Create a maven artifact
ContentArtifactApi list GET /pulp/api/v3/content/maven/artifact/ List maven artifacts
ContentArtifactApi read GET {maven_maven_artifact_href} Inspect a maven artifact
ContentArtifactApi set_label POST {maven_maven_artifact_href}set_label/ Set a label
ContentArtifactApi unset_label POST {maven_maven_artifact_href}unset_label/ Unset a label
ContentArtifactApi upload POST /pulp/api/v3/content/maven/artifact/upload/ Upload a Maven artifact synchronously.
ContentMetadataApi create POST /pulp/api/v3/content/maven/metadata/ Create a maven metadata
ContentMetadataApi list GET /pulp/api/v3/content/maven/metadata/ List maven metadatas
ContentMetadataApi read GET {maven_maven_metadata_href} Inspect a maven metadata
ContentMetadataApi set_label POST {maven_maven_metadata_href}set_label/ Set a label
ContentMetadataApi unset_label POST {maven_maven_metadata_href}unset_label/ Unset a label
ContentMetadataApi upload POST /pulp/api/v3/content/maven/metadata/upload/ Upload a Maven metadata file synchronously.
ContentPackageApi list GET /pulp/api/v3/content/maven/package/ List maven packages
ContentPackageApi read GET {maven_maven_package_href} Inspect a maven package
ContentPackageApi set_label POST {maven_maven_package_href}set_label/ Set a label
ContentPackageApi unset_label POST {maven_maven_package_href}unset_label/ Unset a label
DistributionsMavenApi add_role POST {maven_maven_distribution_href}add_role/ Add a role
DistributionsMavenApi create POST /pulp/api/v3/distributions/maven/maven/ Create a maven distribution
DistributionsMavenApi delete DELETE {maven_maven_distribution_href} Delete a maven distribution
DistributionsMavenApi list GET /pulp/api/v3/distributions/maven/maven/ List maven distributions
DistributionsMavenApi list_roles GET {maven_maven_distribution_href}list_roles/ List roles
DistributionsMavenApi my_permissions GET {maven_maven_distribution_href}my_permissions/ List user permissions
DistributionsMavenApi partial_update PATCH {maven_maven_distribution_href} Update a maven distribution
DistributionsMavenApi read GET {maven_maven_distribution_href} Inspect a maven distribution
DistributionsMavenApi remove_role POST {maven_maven_distribution_href}remove_role/ Remove a role
DistributionsMavenApi set_label POST {maven_maven_distribution_href}set_label/ Set a label
DistributionsMavenApi unset_label POST {maven_maven_distribution_href}unset_label/ Unset a label
DistributionsMavenApi update PUT {maven_maven_distribution_href} Update a maven distribution
PulpMavenApi get GET /pulp/maven/{name}/{path}
PulpMavenApi put PUT /pulp/maven/{name}/{path}
RemotesMavenApi add_role POST {maven_maven_remote_href}add_role/ Add a role
RemotesMavenApi create POST /pulp/api/v3/remotes/maven/maven/ Create a maven remote
RemotesMavenApi delete DELETE {maven_maven_remote_href} Delete a maven remote
RemotesMavenApi list GET /pulp/api/v3/remotes/maven/maven/ List maven remotes
RemotesMavenApi list_roles GET {maven_maven_remote_href}list_roles/ List roles
RemotesMavenApi my_permissions GET {maven_maven_remote_href}my_permissions/ List user permissions
RemotesMavenApi partial_update PATCH {maven_maven_remote_href} Update a maven remote
RemotesMavenApi read GET {maven_maven_remote_href} Inspect a maven remote
RemotesMavenApi remove_role POST {maven_maven_remote_href}remove_role/ Remove a role
RemotesMavenApi set_label POST {maven_maven_remote_href}set_label/ Set a label
RemotesMavenApi unset_label POST {maven_maven_remote_href}unset_label/ Unset a label
RemotesMavenApi update PUT {maven_maven_remote_href} Update a maven remote
RepositoriesMavenApi add_cached_content POST {maven_maven_repository_href}add_cached_content/ Add cached content
RepositoriesMavenApi add_role POST {maven_maven_repository_href}add_role/ Add a role
RepositoriesMavenApi create POST /pulp/api/v3/repositories/maven/maven/ Create a maven repository
RepositoriesMavenApi delete DELETE {maven_maven_repository_href} Delete a maven repository
RepositoriesMavenApi list GET /pulp/api/v3/repositories/maven/maven/ List maven repositorys
RepositoriesMavenApi list_roles GET {maven_maven_repository_href}list_roles/ List roles
RepositoriesMavenApi modify POST {maven_maven_repository_href}modify/ Modify Repository Content
RepositoriesMavenApi my_permissions GET {maven_maven_repository_href}my_permissions/ List user permissions
RepositoriesMavenApi partial_update PATCH {maven_maven_repository_href} Update a maven repository
RepositoriesMavenApi read GET {maven_maven_repository_href} Inspect a maven repository
RepositoriesMavenApi remove_role POST {maven_maven_repository_href}remove_role/ Remove a role
RepositoriesMavenApi repair_metadata POST {maven_maven_repository_href}repair_metadata/ Repair metadata
RepositoriesMavenApi set_label POST {maven_maven_repository_href}set_label/ Set a label
RepositoriesMavenApi unset_label POST {maven_maven_repository_href}unset_label/ Unset a label
RepositoriesMavenApi update PUT {maven_maven_repository_href} Update a maven repository
RepositoriesMavenVersionsApi delete DELETE {maven_maven_repository_version_href} Delete a repository version
RepositoriesMavenVersionsApi list GET {maven_maven_repository_href}versions/ List repository versions
RepositoriesMavenVersionsApi read GET {maven_maven_repository_version_href} Inspect a repository version
RepositoriesMavenVersionsApi repair POST {maven_maven_repository_version_href}repair/

Documentation For Models

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

pulp-list@redhat.com

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pulp_maven_client-0.25.0.tar.gz (81.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pulp_maven_client-0.25.0-py3-none-any.whl (138.2 kB view details)

Uploaded Python 3

File details

Details for the file pulp_maven_client-0.25.0.tar.gz.

File metadata

  • Download URL: pulp_maven_client-0.25.0.tar.gz
  • Upload date:
  • Size: 81.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pulp_maven_client-0.25.0.tar.gz
Algorithm Hash digest
SHA256 f8f18b51dc889c798c3463f04b451556cc89a45ff3be7f2d8d12b45dda23de0b
MD5 1fd17f1d3bcdd2f668d68cf442584010
BLAKE2b-256 1a3ee9c1f09dce58a4a45761a6690b33d6ecee137f3377cf476f94cacbf7ef53

See more details on using hashes here.

Provenance

The following attestation bundles were made for pulp_maven_client-0.25.0.tar.gz:

Publisher: publish.yml on pulp/pulp_maven

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pulp_maven_client-0.25.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pulp_maven_client-0.25.0-py3-none-any.whl
Algorithm Hash digest
SHA256 428eedb52ad3f25c3f8191397e9a886c100f4751d6075b4c3a0dfe9f3390fa06
MD5 df164e0aabb3567befa773318fa0019a
BLAKE2b-256 147ae770034043c74d3b31b3d7c738342c04c088f7b6823dd34f4f85e914a040

See more details on using hashes here.

Provenance

The following attestation bundles were made for pulp_maven_client-0.25.0-py3-none-any.whl:

Publisher: publish.yml on pulp/pulp_maven

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.25.1

2 files

This release

0.25.0 This release

2 files

0.24.1

2 files

0.24.0

2 files

0.23.0

2 files

0.22.1

2 files

0.22.0

2 files

0.21.2

2 files

0.21.1

2 files

0.21.0

2 files

0.20.0

2 files

0.19.0

2 files

0.18.0

2 files

0.17.0

2 files

0.16.1

2 files

0.16.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.0

2 files

0.12.0

2 files

0.11.0

2 files

0.10.1

2 files

0.10.0

2 files

0.9.0

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page