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 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