Module: PulpPythonClient

Defined in:
lib/pulp_python_client/version.rb,
lib/pulp_python_client.rb,
lib/pulp_python_client/api_error.rb,
lib/pulp_python_client/api_client.rb,
lib/pulp_python_client/configuration.rb,
lib/pulp_python_client/models/policy_enum.rb,
lib/pulp_python_client/api/remotes_python_api.rb,
lib/pulp_python_client/models/content_summary.rb,
lib/pulp_python_client/api/content_packages_api.rb,
lib/pulp_python_client/api/publications_pypi_api.rb,
lib/pulp_python_client/models/package_types_enum.rb,
lib/pulp_python_client/models/repository_version.rb,
lib/pulp_python_client/api/distributions_pypi_api.rb,
lib/pulp_python_client/models/repository_sync_url.rb,
lib/pulp_python_client/api/repositories_python_api.rb,
lib/pulp_python_client/models/python_bander_remote.rb,
lib/pulp_python_client/models/python_python_remote.rb,
lib/pulp_python_client/models/exclude_platforms_enum.rb,
lib/pulp_python_client/models/async_operation_response.rb,
lib/pulp_python_client/models/content_summary_response.rb,
lib/pulp_python_client/models/python_python_repository.rb,
lib/pulp_python_client/models/python_python_publication.rb,
lib/pulp_python_client/models/python_python_distribution.rb,
lib/pulp_python_client/models/patchedpython_python_remote.rb,
lib/pulp_python_client/models/repository_version_response.rb,
lib/pulp_python_client/api/repositories_python_versions_api.rb,
lib/pulp_python_client/models/python_python_package_content.rb,
lib/pulp_python_client/models/python_python_remote_response.rb,
lib/pulp_python_client/models/repository_add_remove_content.rb,
lib/pulp_python_client/models/patchedpython_python_repository.rb,
lib/pulp_python_client/models/patchedpython_python_distribution.rb,
lib/pulp_python_client/models/python_python_repository_response.rb,
lib/pulp_python_client/models/python_python_publication_response.rb,
lib/pulp_python_client/models/python_python_distribution_response.rb,
lib/pulp_python_client/models/python_python_package_content_response.rb,
lib/pulp_python_client/models/paginated_repository_version_response_list.rb,
lib/pulp_python_client/models/paginatedpython_python_remote_response_list.rb,
lib/pulp_python_client/models/paginatedpython_python_repository_response_list.rb,
lib/pulp_python_client/models/paginatedpython_python_publication_response_list.rb,
lib/pulp_python_client/models/paginatedpython_python_distribution_response_list.rb,
lib/pulp_python_client/models/paginatedpython_python_package_content_response_list.rb

Overview

#Pulp 3 API

#Fetch, Upload, Organize, and Distribute Software Packages

The version of the OpenAPI document: v3 Contact: [email protected] Generated by: openapi-generator.tech OpenAPI Generator version: 4.2.3

Defined Under Namespace

Classes: ApiClient, ApiError, AsyncOperationResponse, Configuration, ContentPackagesApi, ContentSummary, ContentSummaryResponse, DistributionsPypiApi, ExcludePlatformsEnum, PackageTypesEnum, PaginatedRepositoryVersionResponseList, PaginatedpythonPythonDistributionResponseList, PaginatedpythonPythonPackageContentResponseList, PaginatedpythonPythonPublicationResponseList, PaginatedpythonPythonRemoteResponseList, PaginatedpythonPythonRepositoryResponseList, PatchedpythonPythonDistribution, PatchedpythonPythonRemote, PatchedpythonPythonRepository, PolicyEnum, PublicationsPypiApi, PythonBanderRemote, PythonPythonDistribution, PythonPythonDistributionResponse, PythonPythonPackageContent, PythonPythonPackageContentResponse, PythonPythonPublication, PythonPythonPublicationResponse, PythonPythonRemote, PythonPythonRemoteResponse, PythonPythonRepository, PythonPythonRepositoryResponse, RemotesPythonApi, RepositoriesPythonApi, RepositoriesPythonVersionsApi, RepositoryAddRemoveContent, RepositorySyncURL, RepositoryVersion, RepositoryVersionResponse

Constant Summary collapse

VERSION =
'3.2.0'

Class Method Summary collapse

Class Method Details

.configureObject

Customize default settings for the SDK using block.

PulpPythonClient.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.



67
68
69
70
71
72
73
# File 'lib/pulp_python_client.rb', line 67

def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end