Sha256: 8eca6afb3e6ea6421f3f5b781ad25af20617e4379d2047b5bcfc057b9cf54c70
Contents?: true
Size: 1.47 KB
Versions: 43
Compression:
Stored size: 1.47 KB
Contents
require "pulpcore_client" module Katello module Pulp3 module Api class Yum < Core def self.remote_uln_class PulpRpmClient::RpmUlnRemote end def self.rpm_package_group_class PulpRpmClient::RpmPackageGroup end def self.copy_class PulpRpmClient::Copy end def self.add_remove_content_class PulpRpmClient::RepositoryAddRemoveContent end def self.alternate_content_source_class PulpRpmClient::RpmRpmAlternateContentSource end def alternate_content_source_api PulpRpmClient::AcsRpmApi.new(api_client) end def remotes_uln_api PulpRpmClient::RemotesUlnApi.new(api_client) end def copy_api PulpRpmClient::RpmCopyApi.new(api_client) end def content_package_groups_api PulpRpmClient::ContentPackagegroupsApi.new(api_client) end def content_package_environments_api PulpRpmClient::ContentPackageenvironmentsApi.new(api_client) end def content_modulemd_defaults_api PulpRpmClient::ContentModulemdDefaultsApi.new(api_client) end def content_repo_metadata_files_api PulpRpmClient::ContentRepoMetadataFilesApi.new(api_client) end def content_distribution_trees_api PulpRpmClient::ContentDistributionTreesApi.new(api_client) end end end end end
Version data entries
43 entries across 43 versions & 1 rubygems