Module: PulpFileClient
- Defined in:
- lib/pulp_file_client/version.rb,
lib/pulp_file_client.rb,
lib/pulp_file_client/api_error.rb,
lib/pulp_file_client/api_client.rb,
lib/pulp_file_client/configuration.rb,
lib/pulp_file_client/models/policy_enum.rb,
lib/pulp_file_client/api/remotes_file_api.rb,
lib/pulp_file_client/api/content_files_api.rb,
lib/pulp_file_client/models/content_summary.rb,
lib/pulp_file_client/models/export_response.rb,
lib/pulp_file_client/models/file_file_remote.rb,
lib/pulp_file_client/models/file_file_content.rb,
lib/pulp_file_client/api/publications_file_api.rb,
lib/pulp_file_client/api/repositories_file_api.rb,
lib/pulp_file_client/models/publication_export.rb,
lib/pulp_file_client/models/repository_version.rb,
lib/pulp_file_client/api/distributions_file_api.rb,
lib/pulp_file_client/models/repository_sync_url.rb,
lib/pulp_file_client/models/file_file_repository.rb,
lib/pulp_file_client/api/exporters_filesystem_api.rb,
lib/pulp_file_client/models/file_file_publication.rb,
lib/pulp_file_client/models/file_file_distribution.rb,
lib/pulp_file_client/api/exporters_file_exports_api.rb,
lib/pulp_file_client/models/patchedfile_file_remote.rb,
lib/pulp_file_client/models/async_operation_response.rb,
lib/pulp_file_client/models/content_summary_response.rb,
lib/pulp_file_client/models/file_file_remote_response.rb,
lib/pulp_file_client/models/file_file_content_response.rb,
lib/pulp_file_client/api/repositories_file_versions_api.rb,
lib/pulp_file_client/models/patchedfile_file_repository.rb,
lib/pulp_file_client/models/repository_version_response.rb,
lib/pulp_file_client/models/file_file_filesystem_exporter.rb,
lib/pulp_file_client/models/file_file_repository_response.rb,
lib/pulp_file_client/models/patchedfile_file_distribution.rb,
lib/pulp_file_client/models/repository_add_remove_content.rb,
lib/pulp_file_client/models/file_file_publication_response.rb,
lib/pulp_file_client/models/paginated_export_response_list.rb,
lib/pulp_file_client/models/file_file_distribution_response.rb,
lib/pulp_file_client/models/patchedfile_file_filesystem_exporter.rb,
lib/pulp_file_client/models/file_file_filesystem_exporter_response.rb,
lib/pulp_file_client/models/paginatedfile_file_remote_response_list.rb,
lib/pulp_file_client/models/paginatedfile_file_content_response_list.rb,
lib/pulp_file_client/models/paginated_repository_version_response_list.rb,
lib/pulp_file_client/models/paginatedfile_file_repository_response_list.rb,
lib/pulp_file_client/models/paginatedfile_file_publication_response_list.rb,
lib/pulp_file_client/models/paginatedfile_file_distribution_response_list.rb,
lib/pulp_file_client/models/paginatedfile_file_filesystem_exporter_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, ContentFilesApi, ContentSummary, ContentSummaryResponse, DistributionsFileApi, ExportResponse, ExportersFileExportsApi, ExportersFilesystemApi, FileFileContent, FileFileContentResponse, FileFileDistribution, FileFileDistributionResponse, FileFileFilesystemExporter, FileFileFilesystemExporterResponse, FileFilePublication, FileFilePublicationResponse, FileFileRemote, FileFileRemoteResponse, FileFileRepository, FileFileRepositoryResponse, PaginatedExportResponseList, PaginatedRepositoryVersionResponseList, PaginatedfileFileContentResponseList, PaginatedfileFileDistributionResponseList, PaginatedfileFileFilesystemExporterResponseList, PaginatedfileFilePublicationResponseList, PaginatedfileFileRemoteResponseList, PaginatedfileFileRepositoryResponseList, PatchedfileFileDistribution, PatchedfileFileFilesystemExporter, PatchedfileFileRemote, PatchedfileFileRepository, PolicyEnum, PublicationExport, PublicationsFileApi, RemotesFileApi, RepositoriesFileApi, RepositoriesFileVersionsApi, RepositoryAddRemoveContent, RepositorySyncURL, RepositoryVersion, RepositoryVersionResponse
Constant Summary collapse
- VERSION =
'1.4.0'
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
PulpFileClient.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
73 74 75 76 77 78 79 |
# File 'lib/pulp_file_client.rb', line 73 def configure if block_given? yield(Configuration.default) else Configuration.default end end |